5
votes
JQuery & Objects, trying to make a lightweight widget
To add new method to jQuery You need to use jQuery.fn.methodName attribute, so in this case it will be:
jQuery.fn.addOption = function (value, text) {
jQuery(this).append(jQuery …
1
vote
Python library for rendering HTML and javascript
Only way I know to accomplish this would be to drive real browser, for example using selenium-rc.
…
