Skip to content Skip to sidebar Skip to footer

Can't Find Jquery's $ On Asus Tablet With Android 3.2

I wanted to test an app which I developed against API level 7 on our Asus tablet. Probably it won't look to nice or anything but I'd just like to see how it looks like. As external

Solution 1:

Apparently the platform does not like to include external scripts like

<scripttype="text/javascript"charset="utf-8"src="http://code.jquery.com/jquery-1.7.1.min.js"></script>

I had already downloaded the libraries and changing the source attribute to the local copy solved the problem.

Solution 2:

Just replace '$' with 'JQuery' :)

Solution 3:

I had this problem before. Most off the time a different library is imported (like prototype) . Simply replace the '$' for 'jQuery' see:

http://docs.jquery.com/Using_jQuery_with_Other_Libraries

Post a Comment for "Can't Find Jquery's $ On Asus Tablet With Android 3.2"