i have a code which works in internet explorer but not in firefox. I have a page with several thumbnails. Above these thumbnails I placed a large picture. So, when you click a thumb, the large pic changes dynamically to reflect the
thumbnail
See the live example here.
here is my code
im using this function in .aspx file
and this code in .aspx.vb file
can you help me out.
Thanks.
thumbnail
See the live example here.
here is my code
im using this function in .aspx file
Code:
<SCRIPT Language="JScript">
function fxSearch1(pic,wid,heig){
var it;
var pic;
var wid;
var heig;
it = "<img src='../fileup/"+pic+"' width='"+wid+"' height='"+heig+"' border='0'>";
rateimgs1.innerHTML = it;
}
</script>
Code:
html = "<img src=" & IMAGE_DIRECTORY & System.IO.Path.GetFileName(s) & " height=" & imgHeight & " width=" & imgWidth & " onclick=""fxSearch1('" & System.IO.Path.GetFileName(s) & "','" & bigimgWidth & "','" & bigimgHeight & "')"" / > "
pics.Add(html)
Thanks.
Comment