Hey all,
This for some reason does not trigger alert:
Note that I know the jquery library is installed because otherwise firebug would raise undefined function for '$'.Code:<script>
$('form').submit(function(){
alert('hello');
return false;
});
</script>
<form>
<input type="text" />
<input type="submit" />
</form>
Thanks for response
