Two points here: jQuery offers you to not use the $ sign if you want, see the Simon Willison's article about it: http://simonwillison.net/2007/Aug/15/jquery/ which is sometimes more clear or non conflicting with other libraries you may want to use (it seems everyone likes the $ sign).
The second is to serve your JS files from the /static/ directory, it's a good practice to put them in separate files (or separate server even if you really care about the performances on the client side). JS (like CSS) files usually don't need to be generated on the fly or it's a JSON. Keep separate Content from Presentation and Behavior as much as possible. Cheers, Y. On Jan 5, 2008 8:40 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > That worked thanks!!!! I will make a note on the templator docs for > others. > hc --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "web.py" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/webpy?hl=en -~----------~----~----~----~------~----~------~--~---
