How to use jquery in palm mojo?

1.7k views Asked by At

How do I do to be able to use jquery in my palm mojo application?

2

There are 2 answers

4
Pekka On

Check out this question, especially the comments.

Edit in response to the comments:

I don't know about Palm development so I can't help you out in detail. Mojo however is based on Prototype. Prototype and JQuery crash because they have identical function names. That's where the noConflict plugin comes in. You can read up on it here and get it here. That's about all I can tell you about it - maybe somebody else can take you through the process step by step.

0
james_womack On
  1. Import Mojo
  2. Import jQuery
  3. Create a Script block that contains jQuery.noConflict();
  4. Follow with your normal jQuery except using 'jQuery' instead of '$'

E.g., jQuery('div#idOfSomething').hide();