JavaScript Clicl Agree
JavaScript
Download (.zip)
<script> function dfile(file) { var msg = "Delete #"+file+" ?"; if (confirm(msg)) location.replace("?delete="+file); else location.replace("#"); } </script> <A onClick="dfile(123213)" style='cursor: hand;'>Delete</A>
|