On Aug 7, 9:31 pm, WilsonOfCanada <w...@sfu.ca> wrote:
> Hellos,
>
> I was wondering how to use {{ }} variables in javascript functions.
>
> ex. onchange = "changeArea({{ mooman |safe|escapejs}});"
>
> Thanks
I had this problem too, it was pretty frustrating. I can to 2
different solutions.
1. new template in youapps directory calls whatever_js.html so you
know that is actually javascript.
* just write the <script type="text/javascript">
...Code {{ Here }}
</script>
* and use the {% include whatever_js.html %} tag where needed.
2. Probably not always the best option, but is useful for testing. put
the
<script type="text/JavaScript">
... Code {{ Here }}
</script>
in the template it self. This way django renders out all of the
code before the JavaScript is interpreted and runs as expected.
I'm pretty sure the Admin area does something pretty similar to the
whatever_js.html templates idea. If all else fails you could copy and
paste all of the js into your template the obtrusive way and see if it
works properly, then work backward by pulling bits out.
Maybe that helps?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to
django-users+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---