java - I want to make the button visible on one page by closing another page by clicking the cross button -
i have button on page , when click button page open pop , button hided when close popup page want button become visible again
. how can that?
you take 2 functions:
function dissablebtns() { window.document.frm.name1.disabled=true; window.document.frm.name2.disabled=true; } function enablebtns() { window.document.frm.name1.disabled=false; window.document.frm.name2.disabled=false; }
this functions call when want disable or enable:
Comments
Post a Comment