java - Disable parent window of popup in JSP -
i have jsp page on when 'search' button clicked popup window open,
i want disable parent window on popup , using
window.opener.document.body.disabled=true;
but though make parent window appear disabled, dont make disabled, controls, links tabs enabled , can used/clicked.
what should do?
edit cannot use modal reason.
you can use jquery ui dialog, , set modal form. read so answer more tips.
another option iterate through
input
,anchor
in page , and explicitly setdisabled=true
each of them.this blog describes how disable page elements transparent
div
, using css , bit of javascript.
Comments
Post a Comment