Getting pop up to disappear?

admin

Administrator
Staff member
I am building a string that builds a popup. That pop up works on an onclick event to give the user some selections.

I can't get it to disappear unless I actually roll over the pop ups and I would like to do this.

anyone know of any resources for this?

Here is the code:

sHTML = '<table class="tabOptions" id="tabRowOpt" width="' + width + '" cellspacing="1" cellpadding="1" border="0" bgcolor="#000000">';

//drewman


if (typeID == CG_SOURCE_CUSTOM_ID)
{
if (statusID == REPORT_STAT_READY)
{
sHTML += ' <tr><td id="topt_view" class="tabOptions" onmouseover="tabOver();" onmouseout="tabOut();" onclick="viewReport(\'' + rptID + '\');">View</td></tr>';

sHTML += ' <tr><td id="topt_export" class="tabOptions" onmouseover="tabOver();" onmouseout="tabOut();" onclick="exportReport(\'' + rptID + '\');">Export</td></tr>';

}
 
Back
Top