This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$.msgBox({ | |
title: "Successfull !", | |
content: "Your job posting is being processed", | |
type: "right" | |
}); | |
window.setTimeout(function () { | |
location.href = "index.php"; | |
}, 3500); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select name="oth" id="oth"> | |
<option value="">Please Select</option> | |
<option value="1">1</option> | |
<option value="2">2</option> | |
</select> | |
<input type="text" id="output" style="display: none"/> | |
$(document).ready(function(){ | |
$("#oth").change(function() { | |
$(this).val() == "2" ? $('#output').show() : $('#output').hide(); |
NewerOlder