I'm a noobie to pythonanywhere, so forgive what maybe is a noobie question...
I have a web2py app that uses a jQuery/ajax combination to do something. The web2py view has a link on it that uses the web2py ajax ":eval" capability. The method called by the ajax function builds a jQuery and returns it. The view should then evaluate the jQuery and execute it. The jQuery is supposed to populate a DIV on the view, using the jQuery html function.
This all works perfectly when i run the app on my local development machine. When I run it on pythonanywhere, the jQuery is built correctly, but rather than evaluating it, the jQuery string simply gets written to a new screen; all that appears is the jQuery.
Is there some quirk of jQuery on pythonanywhere that I'm missing? Any help will be greatly appreciated.