HTML:
======
<select id="slider1" data-role="slider" data-mini="true" data-theme="d">
<option value="on">Madras</option>
<option selected="selected"
value="off">Coimbatore</option>
</select>
======
//I want to change the display value "Madras" to "chennai"
$("#slider1").next().children().first().text("Chennai");//I want to change the display value "Coimbatore" to "Kovai"
$("#slider1").next().children().first().next().text("Kovai");
No comments:
Post a Comment