albert albert

albert albert

  • NA
  • 524
  • 0

returning element from a string

May 23 2012 9:14 AM
Hi everybody ,

I have a dropdownlist:

[code]
select id="weekIdonchange="Selectedchange();name="weekIdclass="valid">

[/code]

But how to get with JQuery for example only: Dinsdag?

I have this:

[code]
function Selectedchange() {
    var elemlent = $("#txtBox").val($("#weekId").val().toString().split(","));
    var string = $find("Dindsdag"); //.attr("selected",0);
    print(string);
}
[/code]

but that doesnt seem to work.

THX