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

Popular posts from this blog

Prolog - Listing -

orchardcms - change base url in local copy in Orchard CMS -

python - can't seem to get an output from my class -