0
Answer

returning element from a string

Ask a question
albert albert

albert albert

12y
1.1k
1
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