+
OK, it's not a language, it's a library. Just a scratchpad for my scraps of jQuery snippets.
- Set the contents of an element (like .innerHTML)
$('#myId').html('new string'); - Bind a click event
$('#Stop').bind('click',function(){reset();}); - Run this method when the page is loaded and ready.
$(document).ready(updateWidgets);
- Set the value of a jQuery UI slider
$('#radiusSlider').slider("value",radius);