javascript - jquery ui slider value undefined -
I am developing an app using jquery mobile with phone jeep. If there is a problem when trying to retrieve the value of the slider, for some reason I can not take it, I
$ (document) .ready (function () {like something ) $ ("#Incomplete_field_correo") $ ("# sliderVer") has been found. $ ("Minimum: 10, Max: 100, Orientation:" vertical ", step: 1, value: iValue}); hide (); $ (" #Incomplete_field_secret "). Hide (); $ (" #fix_field_corero ") Hide ();});
I have tried
$ ("sliderVer"). value;
Also
$ ("sliderVer"). Slider ("value");
and
$ ("sliderVer"). Slider (ui.slider);
But does anything work, any thoughts?
Thanks in advance!
Get or get value options after initialization:
// getter var value = $ (".selector") .slider ("option", "value"); // Setter $ (".selector"). Slider ("option", "value", 10);
Comments
Post a Comment