user1652656
user1652656

Reputation: 53

Javascript doesnt work

Yes, i know this question was asked before but the weird thing in my case it works on one server hosting my site while on the other server it doesnt, here it works: http://aspspider.ws/Lordleor/ and here it doesnt: http://www.bookstore.somee.com/

the site is based on general master page, this is the code i have on my master page(inside the head tag):

<script src="Scripts/jquery-1.2.6.min.js" type="text/javascript"></script>
<script src="Scripts/jquery-ui-personalized-1.6rc4.min.js" type="text/javascript"></script>
<script src="Scripts/JScript.js" type="text/javascript"></script>

when i check the jscript.js i see this message: uncaught type error object has no method draggable, any idea how can this be that it's working only on some servers, and how can i repair it to work anywhere?

Upvotes: 0

Views: 80

Answers (2)

user1652656
user1652656

Reputation: 53

I just put it on each page(instead the master) and it worked. Thanks all

Upvotes: 0

T.J. Crowder
T.J. Crowder

Reputation: 1074295

uncaught type error object has no method draggable

That's telling you that you don't have a script at Scripts/jquery-ui-personalized-1.6rc4.min.js on the server where there's a problem.

(BTW, 1.6rc4 has been out of date for four years. jQuery UI is currently on v1.10.1, and the v1.8 tree was the gold standard for years.)

Upvotes: 1

Related Questions