JQuery html5 Loader not working in internet explorer - jpreloader

I created a site with a background video...
So to avoid page lagging i used a preloader.Works fine on every browser except ie.Can anyone help me this is a link to my site:Link
My site Files

It doesn't work, I've the same problem.
Output $("body").jpreLoader(); if browser != Chrome

Related

Ionic 2 inappbrowser how to go back to app from browser on success

I have an app where I need to open the webview on checkout.Till this section everything is working fine but after successful completion of order I have to close the browser by matching the url and show the app again.
Kindly help me to resolve this issue.
I have tried but hard luck I am not able to closed the browser by url detection.
Thank you,
Shreya

Sitecore menu items not working - javascript errors

So I'm just starting to work in sitecore and for some reason none of menu options are working in Page Editor mode for the site that I'm working on. We pretty much have the sitecore website and add some extra page content (MVC app files) to it. I'm getting a variety of javascript errors.
In content Editor, if I click the Sitecore logo and click on Properties I get
TypeError: contentIframe.dialog is not a function
In page editor if I click on the blue components button I get:
TypeError: i.widget is not a function
I'm guessing maybe it's a conflict between jquery that we're using for this website and whatever Sitecore is using. I think it's 7 - but I can't see it via the menu option :)
That guess could be wrong - it could in fact be a browser issue, but I've ensured Firefox is not blocking popups. It doesn't work in Firefox, IE or Chrome though.
The weird thing is that no one else on the project is having this issue it's only on my computer.
Edit - I've also just tried re-installing (7.2) without any local code changes I still can't click on a page and go to Presentation, Details (Layout) - I get a TypeError: contentIframe.dialog is not a function
Edit 2 - I've noticed that I can use sitecore in the QA environment and the dialogs work fine there. So it's something specific to my local build of the site we have (sitting on top of sitecore). But the dialogs just throw jquery errors when I do stuff locally. I was hoping it would be a browser setting but doesn't look like it.
Edit 3 - What I've tried this morning.
Same thing happens in all browsers (FF, IE, Chrome) and I’ve cleared
my browser cache I can access the QA site and the dialog appears as
expected
Copied across the QA site files, pointed my local Digital
site in IIS to the new folder – dialogs don’t work
Team member tried accessing the site from his machine (pointing to my IP address) and
dialogs work for him
I tried seeing if another local sitecore site dialogs were working – but the menu items for that are opening as new windows (so I’m guessing it’s a sitecore 7.2 feature that they appear as jquery dialogs??)
So after googling for rejected-by-urlscan it turns out there's a program called UrlScan from microsoft that was blocking my dialogs. Uninstalled that and I now have dialogs appearing for sitecore. Very exciting :)
I guess it is a problem with some browsers plugin. Sitecore is sensitive to scripts that are used(different versions of jquery or prototype.js). Plugins can inject scripts to HTML source of pages and it can cause errors.
Try to switch off all plugins at least at one browser and check the results.

CF10 developer on IIS7.5 / WIN7 - CFM files run ok - but can't see .GIFs

Can anyone help with this strange problem.
I have just installed CF10 developer on Win7 which is using IIS7.5.
Installation went smooth, and can browse .cfm files no problem and connect to datasources no problem .. BUT: even though I can browse all my local cf sites, none of the sites will display images or styles for external .CSS files.
So, I get the site, content from the database, and all the functionality of cfm files being parsed OK, but no styles and no images.
If I browse directly (pasting the filepath in the browser) to one of the images I get a 404 error - file not found - even though the .gif file does indeed exist in the directory.
So, basically, I can run CFM files, and browse a local site built in coldfusion, but none of the images or externally referenced css files will be "found" by the browser/IIS.
Can anyone help?
Thanks in advance if someone can..
Sounds like an issue with those mimetypes, please see the following for information on installing the static content role to IIS and enabling those mimetypes to be served.
No Mime Types Option in IIS 7
Be sure to enable static content in IIS 7.
Had two occurrences of this problem lately.
See here:
http://weblogs.asp.net/anasghanem/archive/2008/05/23/don-t-forget-to-check-quot-static-content-service-quot-in-iis7-installation.aspx
Try restarting the IIS server. Close all browsers and restart.
You need to determine if it is a CF issue or an IIS issue. Try the following:
Check to see if this is an issue with images not being served vs broken paths to the images. There may be CFML code that is creating links to invalid locations.
If the locations are valid then it would be an issue with IIS not server image files.
Also check to see if there is a similar issue with JPEG and PNG files. If JPEGs and PNGs show up, this suggests an IIS issue.
Also try creating a simple HTML page that has an image on it. If it has an image on it, this suggests a CF issue

I'm trying to use the likebox plugin on my website with the "iframe" option and it's not working

I coped and pasted the code that is supplied, and the i frame is displaying with a "page cannot be found". Does anyone know if this is just a bug? Or if they're not maintaining the "iframe" option anymore?
Facebook is still using the iframe option. Did you put in the link to your Facebook page? You might try using the tool again. http://developers.facebook.com/docs/reference/plugins/like-box/

google loader causing browser to change location FF or blank page in chrome

I have an issue using the google loader in an existing webpages.
When I call e.g.
google.load("translate","1");
If FireFox, the browser changes it's location trying to load something from google which it never finishes and in Chrome the page just goes blank.
Has anyone experienced this before?
These pages are doing a lot of jquery, javascript and asp.net AJAX too. But I can't find anyting which seems to be causing it.
Thanks!
I had the same issue, after a while I found this solution.
http://markmail.org/message/vn57b44u7eqbrn3c
If you post your script I can probably provide more help
Same issue, same solution as suggested by Allartk: adding the "callback" options to the load() call.
Here you can find detatailed and updated documentation:
Google Loader API
Example:
function myCallback(){console.info("callback!");}
google.load("translate","1","callback": myCallback);