show/hide this revision's text 3 fixed code

While I'm not sure about exactly what you want to accomplish, this bit of code worked for me.

<select id="mySelect" multiple="multiple">
  <option value="1">First</option>
  <option value="2">Second</option>
  <option value="3">Third</option>
  <option value="4">Fourth</option>
</select>

<script type="text/javascript">	
$(document).ready(function() {
  if (!$('#mySelect option:selected').length!$("#mySelect option:selected").length)
    $('#mySelect option:last').attr('selected'("#mySelect option[value='3']").attr('selected', 'selected');
});
</script>
show/hide this revision's text 2 fixed a really weird sentence and improved formatting

While I'm not sure about exactly what you want to accomplish, this bit of code worked for me.

<select id="mySelect" multiple="multiple">
  <option value="1">First</option>
  <option value="2">Second</option>
  <option value="3">Third</option>
  <option value="4">Fourth</option>
</select>

$(document).ready(function() {
  if (!$('#mySelect option:selected').length)
    $('#mySelect option:last').attr('selected', 'selected');
});
    Post Made Community Wiki by Community
show/hide this revision's text 1