Forum Moderators: open
Thanks!
You can use the 'button' input type to trigger JS functions with out submitting.
<input type="button" value="click me!" onclick="someFunction()" />
Birdman