+ 3
How can we create search box with jquery
2 Answers
+ 3
Why jQuery when you can do it in pure HTML?
<form action="http://google.com" method=GET>
<input type=text name=q>
<input type=submit>
</
+ 1
do in pure HTML5
<form action =" " method ="GET"><input type=search name="name"/><input type=submit/></form>