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...

  1. check console js errors.
  2. try simple page holding 2 textboxes , minimal scripts init

Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -