So Flask's render_template() just runs the template through Jinja and returns the result. I just experimented with returning HTML (containing JQuery) as a block of text from an @app.route method and that worked fine.
Thanks, I think I understand it a little better now. -- Bruce Eckel www.AtomicScala.com www.Reinventing-Business.com www.MindviewInc.com On Mon, Dec 31, 2012 at 3:32 PM, Steven Kryskalla <[email protected]>wrote: > On Mon, Dec 31, 2012 at 9:58 AM, Bruce Eckel <[email protected]> > wrote: > > At this point I'm just thrashing about trying to figure out how to get > Jinja > > and Jquery to work together. > > > > Here's my current test file, after moving things about and sticking in > tests > > to see if anything makes a difference. I'm not even getting the alert > > (I'm using Flask). Sorry for the mess and thanks for any pointers -- I've > > read through the docs enough to make a macro but I can't find anything > > anywhere about how to use Jquery with Jinja. > > Jinja and jquery don't have any special interaction with each other, > by the time jquery executes, all you have is plain HTML, the template > language is out of the picture. > > Do you see any javascript errors when you run your code? I see this: > > Uncaught TypeError: Object [object Object] has no method 'effect' > > Because of this line: > > $('#tr635').effect("highlight", {}, 3000); > > "effect" looks like it comes from jquery UI. Are you including that in > your page somewhere? > > -steve > > -- > You received this message because you are subscribed to the Google Groups > "pocoo-libs" 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/pocoo-libs?hl=en. > > -- You received this message because you are subscribed to the Google Groups "pocoo-libs" 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/pocoo-libs?hl=en.
