i want to use the phatfusion slider via Dreamweaver. But how do I get the value of the slider back into php?
here is the basic code as installed by Dreamweaver.:
so were do I go from here? i am a fish out of water once I get into ajax.
I am sure there is a simple answer for those who specialize in this field.
thank you for you kindest considerations and assistance.
Cheers.
here is the basic code as installed by Dreamweaver.:
Code:
<div id="pf_slider1">
<div id="pf_slider1_el" class="slideContainer">
<div id="pf_slider1_Handle" class="slideHandle"></div>
</div>
<div class="pos"></div>
</div>
<script type="text/javascript">
// BeginWebWidget phatfusion_slider: pf_slider1_el
window.addEvent('domready', function(){
var pf_slider1 = new Slider('pf_slider1_el', 'pf_slider1_Handle', {
onTick: function(pos){
this.knob.effect(this.p, {duration: 200,
transition: Fx.Transitions.quadOut}).start(pos);
},
onComplete: function(val){$('pf_slider1').getElement('.pos').setHTML(val);},
mode: 'horizontal',
steps: '10'
});
});
I am sure there is a simple answer for those who specialize in this field.
thank you for you kindest considerations and assistance.
Cheers.
Comment