Views:
Author: Chris
How to make
This is VERY simple, all you have to do is in your javascript source put this code:
[js]
functon alertit($text){
alert($text);
}
[/js]
and then in your html add this code
<input type="button" onclick="javascript:alert('Hey, I see you clicked that button down there')" value="That Button" />
Enjoy!
1