1. Link to a page
onclick="location.href='filename. html'" />
2. Return (equivalent to back)
onclick=" location.href='javascript:history.go(-1);'" value="Return" />
3. Open a new webpage
onclick="window.open('filename.html')" />
4. Open a new borderless window
5. Open a new webpage and point to another page
6. Open a new window without borders and point to another page One page
7. Click the button to pop up the confirmation alert window
Method 1:
onClick="alert('Confirm submission?');location.href= 'filename.html';return false;" >
Method 2:
onClick="if (confirm('Confirm submission?'))location.href= 'filename.html';return false;" >