javascript - Adding 2 separate scrollers in mobiscroll -
i'm trying add separate scrollers date , time pickers mobiscroll reason can first scroller work.
html:
<div id="set_call_div"> <label> <span>date:</span> <input id="date_scroller" name="date"> </label> <br> <label> <span>time:</span> <input id="time_scroller" name="time"> </label> </div> js:
$(document).ready(function() { $("#date_scroller").mobiscroll().date(); $("#time_scroller").mobiscroll().time(); }); the first 1 responds , opens, second 1 doesn't respond @ all.
ideas?
that how supposed initialized, , should working...
- check console js errors.
- try simple page holding 2 textboxes , minimal scripts init
Comments
Post a Comment