sivakrishna.m
Joined: 01 Jan 2008 Posts: 160 Location: Narsipatnam
|
Posted: Thu Sep 24, 2009 1:03 pm Post subject: JQuery Stylish Select Boxes With ID Identifier |
|
|
Hi,
By JQuery , we can create a Stylish Select Boxes with the ID Identification , For that download the plugin for the below site
http://www.scottdarby.com/2009/05/jquery-plugin-stylish-select-unobstrusive-select-box-replacement/
Then place it in the public Directory then keep the below code in HEAD Tag of your Rhtml or erb or html file
$(document).ready(function(){
$('#jsel').sSelect();
});
<select id="jsel" name="sel_jq">
<option value="1">test1</option>
<option value="2">test2</option>
<option value="3" >test3</option>
</select>
Here "jsel" is the ID For your Select box .
Thank You,
Siva |
|