Note that there are some explanatory texts on larger screens.

plurals
  1. POjquery and jquery.ui work in all browsers except IE 7 - Why?
    primarykey
    data
    text
    <p>I have written a small jquery application that allows a person to slide a handle 200 px to the right.</p> <p>The application uses jQuery 1.2.6 and jquery UI 1.5.3</p> <p>My script works flawlessly in all browsers except ie 7 (ie 6 untested, don't care). It even works in ie 8.</p> <p>to see the code app in action and the code via view source, please check out <a href="http://iomobile.dev.devsu.com" rel="nofollow">http://iomobile.dev.devsu.com</a>.</p> <p>iphone-unlock.js is the jquery code, which uses style.css specifically for the graphic elements. Sorry it's very slow - caching is turned off while I debug.</p> <p>Also, there are no errors for debugging. Any thoughts on why this is happening are greatly appreciated.</p> <p>I thought it may be helpful to add the code in an edit: $(document).ready(function() {</p> <pre><code>var unlock = function() { $.openPopupLayer({ name: "iPhoneInteract", url: "/sites/all/themes/tao/templates/iphone.html", afterClose: function () { $("#unlock-handle").animate({"left" : "-1"} ); $("#slide-to-unlock").animate({opacity: 1}, 200 ); top.location.href = 'http://iomobile.dev.devsu.com/?device=desktop'; } }); } $("#unlock-slider").slider({ handle: "#unlock-handle", animate:true, slide: function(e,ui) { $("#slide-to-unlock").css("opacity", 1-(parseInt($("#unlock-handle").css("left"))/120)); }, stop: function(e,ui) { if($("#unlock-handle").position().left == 210) { unlock(); } else { $("#unlock-handle").animate({left: 0}, 200 ); $("#slide-to-unlock").animate({opacity: 1}, 200 ); } } } ); </code></pre> <p>}); enter code here</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload