Finding out the current value of a select-list with jQuery 1.4 is easy:
$('#selectList').val();
But whats about jQuery 1.2? I get an "undefinied".
I also tried
$('#selectList:selected').val();
$('#selectList option').val();
$('#selectList option:selected').val();
Nothing works but for this project i have to use jQuery 1.2