Object doesn't support this method for jquery ui draggable in IE - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T15:25:50Z http://stackoverflow.com/feeds/question/343836 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/343836/object-doesnt-support-this-method-for-jquery-ui-draggable-in-ie 0 Object doesn't support this method for jquery ui draggable in IE Kiran 2008-12-05T13:29:39Z 2009-06-28T07:00:02Z <p>When i try to execute the following code am getting the error in IE like. Object doesn't support this property or method</p> <pre><code> &lt;script type="text/javascript"&gt; google.load("jquery", 1); google.load("jqueryui", "1.5.3"); $(document).ready(function() { $("#main-dialog").draggable(); }); &lt;/script&gt; &lt;div id="main-dialog"&gt; This is just some simple content &lt;/div&gt; </code></pre> <p>Please help me on this issue.</p> http://stackoverflow.com/questions/343836/object-doesnt-support-this-method-for-jquery-ui-draggable-in-ie/344242#344242 0 Answer by sanchothefat for Object doesn't support this method for jquery ui draggable in IE sanchothefat 2008-12-05T15:45:35Z 2008-12-05T15:45:35Z <p>Maybe it's my ignorance of the google ajax API but where you load jquery with the parameter '1' try using '1.2.6' to make sure it's the latest version you're using. It may have a bug fix with it.</p>