tags:

views:

29

answers:

1

I have an asp page with dropdown box. user selects an item and submits page. how do i show the selected item using jquery.

A: 

$("#combobox").val(value);

Vivek Chandraprakash