This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:var%20s=document.createElement('script');s.setAttribute('src',%20'http://code.jquery.com/jquery-latest.js');document.getElementsByTagName('body')[0].appendChild(s);alert('thank%20you%20for%20using%20jquery!');void(s); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # create a query string from a dictionary (pquery) as returned from | |
| # cgi.parse_qs / urlparse.parse_qs when urllib.urlencode is not appropriate | |
| query_string = '&'.join( | |
| '='.join([key, pquery[key][0]]) for key in pquery | |
| ) |
NewerOlder