jQuery uses the $ sign as a shortcut for jQuery. This conflicts with the $ in web.py templates. I can get around this using:
[code] var jq=jQuery.noConflict(); [/code] which means finding/replacing all the $s with jq in the js scripts. This is painful for large github scripts updated regularly. Any solution to this. Not sure if web.py has a noConflict type function. tia -- 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.
