I am trying to create a modal window for a user to enter some info before moving on. I have been using:
Code:
<body "onBlur="document.focus()">
but on this particular popup that I am working with I have a frameset. So what I did was:
Code:
<frameset rows="100%,*" onBlur="document.focus()">
that works fine untill the user clicks on a input field on the form, then the window will be allowed to lose focus. How do I fix this?
thanks
michael