how to submit form without a submit button in PHP ?

Marc0

Well-known member
Registered
Joined
Jun 6, 2012
Messages
890
Points
28
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

Well-known member
Joined
Jul 9, 2012
Messages
158
Points
18
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.
 
Older Threads
Latest Threads
Replies
1
Views
62
Replies
1
Views
78
Replies
2
Views
730
Recommended Threads
Replies
6
Views
3,707
Replies
1
Views
1,934
Replies
0
Views
3,349
Replies
7
Views
4,711
Replies
21
Views
7,152

Sponsors

Tag Cloud

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