Search Results

0
votes

How to get the new value of an HTML input after a keypress has modified it?

You can try this code (requires jQuery): <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> …
1
vote

Identifying list item index - which is a better approach?

If you opt to use jQuery it comes as simple as: $('ul#list li').click(function () { var i = this.id.split('-').pop(); alert( i ); }); …