Passing javascript variable to python
- by William S.
Hi,
for example:
#!/usr/bin/python
print "This is python."
print "<script type="text/javascript">
var pass_to_python = new Number(7)
</script>"
the_number = pass_to_python???
How do i get the pass_to_python in python?
Thanks.