Hi Bruce
correct - jQuery(function() {jQuery("#loc__slider_amtt_slider").slider({min:1,max:50,step:1,slide: function(event,ui){$( "#loc__slider_amtt").val(ui.value);},change: function(event,ui){$("#loc__slider_amtt").change();},value:0});});
wrong - jQuery(function() {jQuery("#loc__slider_amtt_slider").slider({min:1,max:50,step:1,slide: function(event,ui){$( "#loc__slider_amtt").val(ui.value);},change: function(event,ui){$("#loc__slider_amtt").change();},value:});});
Found a missing 0 between code.
It is the last value parameter towards the end of the function line.
Not sure what corrects it, but it seems to correct itself as I move between the fields and submit the form.
Johan