Close Links
A close link is something you might use on a popup to make it close. To make the close link a button, you would use this code (you can change the bold stuff): <button onclick="self.close();">close Me</button>
Or you can use a text link:
<a href="#" onclick="self.close();">close Me</a> You can even use an image link:
<a href="#" onclick="self.close();"><img src="image.gif" border="0"></a>
<a href="#" onclick="self.close();">close Me</a> You can even use an image link:
<a href="#" onclick="self.close();"><img src="image.gif" border="0"></a>
