Ok so i have a jQuery .change
$('#application').change(function(){
var selected = $(this).val().trim();
alert(selected);
if(selected == 'something') {
$('#profile-info').show();
}
....
....
my html
<select name="application" id="application">
<option value="--select something--">--select something--</option>
<option value="first">first</option>
<option value="second">second</option>
<option value="third">third</option></select>
The alert fires on all browsers but IE.....ie8 and 7 dont work at all
any ideas what i might be missing