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