0
votes
0answers
80 views

jslint from mod_python in apache

I am new to mod_python.I want to call jslint from mod_python.I have tried to import it using import jslint but it doesn't work
2
votes
1answer
1k views

python list to javascript array

Probably a quick answer from you experts, but i am stumbling upon a interesting challenge that I can't wrap my head around. I have a python .psp file that contains both a list mylist[] which gets ...
0
votes
1answer
167 views

How to change HTML form with 2 selections to Javascript?

I am working with the following HTML form: <form method = 'POST' action = '/python/stats/'> <select name = 'team'> <option value = 'team1'> team1 </option> <option value = ...
-1
votes
3answers
2k views

how to redirect to new page with javascript , after submit html form?

I am using html, javascript & mod_python. I want to submit html form. To do this I used document.formName.submit(); after submitting I want to redirect to new page. I tried ...