I have a select field with some options in it. Now I need to select one of those options with jQuery. But how can I do that when I only know the
select
options
There's an easier way that doesn't require you to go into the options tag:
$("div.id_100 select").val("val2");
Check out the this jQuery method.