Here's the code for this. <FORM>
</FORM> Push this button to make a message appear. Here's the code. <FORM> As you entered the page you received an alert message. <BODY onLoad="alert('Welcome!!!);">To see this alert(), click on another link or press the back button. <BODY onUnLoad="alert('Good Bye!!!);">When you click on a link like this, an alert will pop up and then you will be taken to the link destination. Give it a shot! To make use of this SCRIPT, copy the following lines of code. <A HREF="Link
Goes Here"
onClick="alert('Your
Message Goes Here');"> The next line is
This is just like the example above, but it uses an onMouseOver instead of an onClick. Click on the link to see this example. CLICK ME!! Here how it works. Just put this part in your HEAD tag and then change YOUR CONFIRM MESSAGE and YOUR LINK GOES HERE. <SCRIPT> function ruSure() { if (question == true) { //
OR if (question) </SCRIPT> Now put this anywhere in your page and change YOUR LINK DESCRIPTION <A HREF="javascript:void("")" onClick="ruSure();">YOUR LINK DESCRIPTION </A>
Click on the links to see these examples. CLICK ME!! or CLICK ME!! Here how it works. Just put this part in your HEAD tag and then change YOUR CONFIRM MESSAGE and YOUR LINK GOES HERE. <SCRIPT> function ruSure() { if (question) { function ruSure1()
{ if (question == false) { //
OR if (!question) </SCRIPT> Now put this anywhere in your page and change YOUR LINK DESCRIPTION <A HREF="javascript:ruSure();">YOUR LINK DESCRIPTION </A> <A HREF="javascript:ruSure1();"> YOUR LINK DESCRIPTION </A> Click this to see the example! Here it goes...put this in your HEAD tag and change CONFIRM MESSAGE and LINK LOCATION and any of the window properties. <SCRIPT> function winConfirm() { if (question) { </SCRIPT> Now throw this somewhere in your page and change the LINK DESCRIPTION. <A HREF=""
onClick="winConfirm();
return false;"> |