Log in

View Full Version : Roll Over Popup Box/Window



jdadwilson
02-25-2013, 06:18 AM
I am in need of a popup box or window that will activate on a roll-over.

Overlib seems to work fairly well except for the length. The content of some boxes contain in excess of 1000 characters. I cannot just set an arbitrary limit as this might truncate in the middle of a tag group and thus break the popup.

Here is a link to my page using Overlib. http://www.txfannin.org/militaryinfo.php?warID=CSA in case you are interested. All work fine except for "Milam" who has 1188 characters.

TIA for your assistance
James A. Wilson
TXFannin.org Developer

Deleted
02-26-2013, 12:46 AM
JavaScript button?


function testFunc(){
alert("Contents");
}
//Call it in HTML with -
<input type="button" onclick="testFunc()" value="Content">


Or you can go with a link



function testFunc(){
alert("Contents");
}
//Call it in HTML with -
<a onclick="testFunc()" href="#Link here">Content</a>