hi below code is working in the IE6 and mozilla but not working IE7.when i moving the mouse to the block the popup getting closed
could you please help me how to resolve this problem
the JS is
function openPlusPopup(w hichLayer)
{
var style2 = document.getEle mentById(whichL ayer).style;
style2.display = "block";
}
could you please help me how to resolve this problem
Code:
<div class="plus_addition">
<div class="plusindicator " onmouseover="openPlusPopup('pluspopup_<c:out value="${uniqueId}"/>')" onmouseout="closePlusPopup('pluspopup_<c:out value="${uniqueId}"/>')">
<a class="pluslink" href="javascript:void(0)" target="detailsFrame_<c:out value='${uniqueId}'/>">
<img src='<cms:ref path="/results" reference="small__smile"/>' alt="" width="18" height="14" border="0"/>
<img src='<cms:ref path="/results" reference="plus_text"/>' alt='<cms:data path="/results" reference="plus_logo_alt"/>' width="90" height="12" border="0"/>
<p class="plus_components">Goodday</p>
</a>
<div class="pluspopup" id="pluspopup_<c:out value="${uniqueId}"/>" onmouseover="openPlusPopup('pluspopup_<c:out value="${uniqueId}"/>')" onmouseout="closePlusPopup('pluspopup_<c:out value="${uniqueId}"/>')">
<div class="arrow">
<img src='<cms:ref path="/results" reference="plus_popup_arrow"/>' alt="" border="0"/>
</div>
<div class="inner">
<p><cms:data path='/results' reference='plus_benefits' /></p>
<ul>
<li><cms:data path='/results' reference='plus_benefit1' /></li>
<li><cms:data path='/results' reference='plus_benefit2' /></li>
<li><cms:data path='/results' reference='plus_benefit3' /></li>
</ul><br /><br />
<c:if test="${selected.bFlag != true && selected.lateFlag != true && selectedn.evFlag != true }">
<a href="#navigateTo_<c:out value="${uniqueId}"/>" onclick="closePlusPopup('pluspopup_<c:out value="${uniqueId}"/>');openImage('<c:out value='${uniqueId}'/>','normal'); displayDetails('<c:out value="${uniqueId}"/>','Plusdetails');jumpTo('link_<c:out value="${pkgNum}"/>');"><cms:data path='/results' reference='fulldetails' /></a>
<br clear="all"/>
</c:if>
</div>
</div>
</div>
</div>
</c:if>
function openPlusPopup(w hichLayer)
{
var style2 = document.getEle mentById(whichL ayer).style;
style2.display = "block";
}
Comment