how to submit form without a submit button in PHP ?

hoangvu

New member
Joined
Jun 6, 2012
Messages
1,828
Points
0
I am using DHTMLXslider in a form and I want form to submit slider value to php file whenever slider value change. I tried using onchange and onclick event but it doesn't work. Here is my code. Is there any solution?

Code:
<form method="POST" target="content" action="here.php" id="myform">
<input class="dhtmlxSlider" skin="ball" min="10" max="20" step="1" type="text" name="slider2" id="slider" style="width:200px" value="20" onclick="this.form.submit()"/>  
<br>

</form>
Please help.
 
Last edited by a moderator:

Jack London

New member
Joined
Jul 9, 2012
Messages
386
Points
0
with your code

Code:
<input  class="dhtmlxSlider" skin="ball" min="10" max="20" step="1" type="text" name="slider2" id="slider" style="width:200px" value="20" onclick="this.form.submit()"/>  
<br>
</form>
Add it to it

Code:
<script type="text/javascript">
  document.getElementById('slider').submit();
</script>
Ok.
 
Newer threads
Replies
17
Views
26,365
Replies
0
Views
4,425
Replies
4
Views
6,520
Replies
15
Views
16,589
Replies
0
Views
4,192
Latest threads
Replies
1
Views
144
Replies
0
Views
88
Replies
1
Views
181
Recommended threads
Similar threads

Referral contests

Referral link for :

Popular Contributors - Past 30 Days

Sponsors

Popular tags

You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an alternative browser.

Top