Hi...
i'm new at dhtml, and i want to use it in help windows (instead of window.open() of javascript)...
i'm done it... but it works only in internet explorer.. in firefox 2 and 3 it opens the dhtml modal window but in the background of my main page... what do i have to correct so it opens up in front as it does in internet explorer?
i'm using c# and ajax... it's an asp.net app...
in masterpage i have this:
thanks in advance...
i'm new at dhtml, and i want to use it in help windows (instead of window.open() of javascript)...
i'm done it... but it works only in internet explorer.. in firefox 2 and 3 it opens the dhtml modal window but in the background of my main page... what do i have to correct so it opens up in front as it does in internet explorer?
i'm using c# and ajax... it's an asp.net app...
in masterpage i have this:
Code:
<link rel="stylesheet" href="~/dhtml/windowfiles/dhtmlwindow.css" type="text/css" />
<link rel="stylesheet" href="~/dhtml/modalfiles/modal.css" type="text/css" />
<script type="text/javascript" src="dhtml/windowfiles/dhtmlwindow.js">
</script>
<script type="text/javascript" src="dhtml/modalfiles/modal.js"></script>
<script type="text/javascript">
function openhelp(vPage){
vWindow=dhtmlmodal.open('Help', 'iframe','' + vPage+ '', 'Info', 'width=900px,height=500px,center=1,resize=0,scrolling=1')
}
</script>
Comment