I have implemented an ajax lightwindow to work around pop-up blocking issues with users browsers when clicking on weblink links on our site.
So basically instead of the user clicking on a link that goes to a form or registration that opens in a pop-up, the weblink form appears in an iframe which floats above the page within the same browser window.
This method has been great during testing of our new site however at the end of many registrations and forms the user is presented with a button to "Close this Window". The code for this button is:
<INPUT onclick="window.close()" id="btnConfirm" CLASS="inputbutton" TYPE="button" VALUE="Close Window">
For our implementation this button serves no purpose as we have our own close link at the top of the lightbox window. It would be great if we could remove it or have some ability to edit the button's value.
Anybody?