-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
24 lines (21 loc) · 918 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
$(document).ready(function() {
$("#helpButton").click(function(){
if(document.getElementById('inputText')){
document.getElementById('inputText').value = "";
}
document.getElementById("inputHelpButton").value ='1';
$( "#textForm" ).submit();
});
$("#enterButton").click(function(){
if(document.getElementById('inputText')){
document.getElementById('inputText').value = "";
}
document.getElementById("inputEnterButton").value = '1';
$( "#textForm" ).submit();
});
$("#searchButton").click(function(){
document.getElementById("inputSearchButton").value = '1';
document.getElementById('inputText').value = "";
$( "#textForm" ).submit();
});
});