Skip to content

Instantly share code, notes, and snippets.

@ryanonit
Created January 6, 2014 06:21
Show Gist options
  • Save ryanonit/8278985 to your computer and use it in GitHub Desktop.
Save ryanonit/8278985 to your computer and use it in GitHub Desktop.
this just for the test
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Form > Delete</title>
<link rel="stylesheet" type="text/css" href="bbs.css">
<script type="text/javascript">
function goLite(FRM, BTN) {
window.document.form[FRM].elements[BTN].style.backgroundColor = "#AAAAAA";
}
function goDim(FRM, BTN) {
window.document.form[FRM].elements[BTN].style.backgroundColor = "#EEEEEE";
}
</script>
<script type="text/javascript">
function check_submit() {
if (document.edit_form.password.value =="") {
alert('You need to enter the password in order to delete the thread');
document.edit_form.password.focus();
return;
} else {
document.edit_form.action="bbs_delete.php";
document.edit_form.submit();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment