tags:

views:

79

answers:

1

i have a select box at my page , i want to set diffrent value and text in select based on page login info. how is it possible with jquery

A: 

for selections, all you would have to do is this. Assume the id of the selection is name

$('#name').val(10);

val is the value of the option you would like to be selected

Dhana