Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have an html page full of jquery sliders, when the page loads all the sliders are set based of java script values. what i want the sliders to do is when ever the sliders are modified the change would be reflected in a xml document the has all the sliders id's and parameters.

this is one slider in the xml

<row>
 <parameter>"Name of slider"</parameter>
 <units>%</units>
 <minimum>25</minimum>
 <maximum>100</maximum>
 <default>100</default>
 <value>100</value>
 <id>"nameofslider"</id>
 <function>change"nameofslider"</function>
</row>

this is how i want it to look after i have ajusted the slider to 50

<row>
 <parameter>"Name of slider"</parameter>
 <units>%</units>
 <minimum>25</minimum>
 <maximum>100</maximum>
 <default>100</default>
 <value>***50***</value>
 <id>"nameofslider"</id>
 <function>change"nameofslider"</function>
</row>

can this be done with javascript and php

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.