Object doesn't support this method for jquery ui draggable in IE - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T15:25:50Zhttp://stackoverflow.com/feeds/question/343836http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/343836/object-doesnt-support-this-method-for-jquery-ui-draggable-in-ie0Object doesn't support this method for jquery ui draggable in IEKiran2008-12-05T13:29:39Z2009-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> <script type="text/javascript">
google.load("jquery", 1);
google.load("jqueryui", "1.5.3");
$(document).ready(function()
{
$("#main-dialog").draggable();
});
</script>
<div id="main-dialog">
This is just some simple content
</div>
</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#3442420Answer by sanchothefat for Object doesn't support this method for jquery ui draggable in IEsanchothefat2008-12-05T15:45:35Z2008-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>