What\'s wrong with this code?
jQuery
$(document).ready(function() { $(\"#routetype\").val(\'quietest\'); )};
HTML
&
You need to select jQuery in the dropdown on the left and you have a syntax error because the $(document).ready should end with }); not )}; Check this link.
$(document).ready
});
)};