Could not convert JavaScript argument arg 0" nsresult: "0x80570009 (NS_ERROR_XPC_BAD_CONVERT_JS

Posted by Drahcir on Stack Overflow See other posts from Stack Overflow or by Drahcir
Published on 2009-08-25T08:41:59Z Indexed on 2010/06/03 4:04 UTC
Read the original article Hit count: 741

Filed under:
|
|

I am trying to make this captcha jquery plugin to work. The a certain line of code is executed, the error pops up.

This is the line of code that causes the error :

$(".ajax-fc-" + rand).draggable({ containment: '#ajax-fc-content' });

What I am assuming is that there is some kind of conflict with the javascript reference, but can't determain what.

These are the referenes that I am using

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.7.2/jquery-ui.min.js"></script>
<script src="js/ui.core.js"></script>
<script src="js/ui.draggable.js"></script>
<script src="js/ui.droppable.js"></script>
<script src="js/effects.core.js"></script>
<script src="js/effects.slide.js"></script>

© Stack Overflow or respective owner

Related posts about jQuery

Related posts about jquery-ui