hi, I am using one javascript function to pop up DIV content.
i have to show image and few lablel value.
here, i give full coding.
this javascript function works(all values and image showing) in chrome and IE browser. but it is not working in firefox.
i mean while the div is poped up, few values(image only showing) popedup but i assingend label value from javascript popup function. those value is not showing in firefox.
where i made mistake, how to solve this problem.
Javascript funtion:
<script type="text/javascript">
function show_popup(pric,image) {
var popup = document.getElementById('<%=popup.ClientID %>');
popup.style.visibility = 'visible';
document.getElementById('Div1').style.display = 'block';
document.getElementById('<%=lbln.ClientID %>').innerText = pric;
document.getElementById('<%=img.ClientID %>').src = imgurl;
return false; ...
Go to the complete details ...