jquery.ui.draggable.js and jquery.ui.widget.js conflict
Posted
by Daniel S
on Stack Overflow
See other posts from Stack Overflow
or by Daniel S
Published on 2010-04-07T17:34:05Z
Indexed on
2010/04/07
17:53 UTC
Read the original article
Hit count: 1449
hello
I had a working application, which uses a jquery ui dialog. I wanted to make the dialog draggable. As far as I know the only thing needed is the jquery.ui.draggable.js script. So I added it to the scripts I am using, but know I get the following error (as shown in the firebug console): base is not a constructor The relevante line in jquery.ui.widget.js is:
var basePrototype = new base();
This is how I am adding all the scripts:
<script type="text/javascript" src="/media/development-bundle/jquery-1.4.2.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.core.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.widget.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.draggable.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.position.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.autocomplete.js"></script>
<script type="text/javascript" src="/media/development-bundle/ui/jquery.ui.dialog.js"></script>
Am I doing something wrong? or is this a problem with jquery?
Thanks in advance for any help
© Stack Overflow or respective owner