Friday, October 21, 2011

javascript code that popup a confirmation box

<script type="text/JavaScript">
var cn_commented='0';
window.onload = function(){
    if (document.getElementById("commentform")){
        document.getElementById("commentform").onsubmit = function (){
            cn_commented='1';
            return true;
            }
        }
}
window.onbeforeunload = function(){
    if (cn_commented!='1') {
            return "Welcome to himtechinc.com.";
        }
}
</script>


In joomla just paste it in  <body></body> tag.


That's all

No comments: