Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.0.min.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  Age: 
  <select id="select">
    <option value="0"></option>
    <option value="1">Young</option>
    <option value="2">Grown Up</option>
     <option value="3">Old</option>
  </select>
  <span id="tip">Select your age </span>
</body>
</html>
 
var $select = $('#select');
var initialValue = $select.val();
var changed = false;
var check = function(){
  if (!changed){
     if (initialValue !== $select.val()){
       changed = true;
       $('#tip').hide();
     } else {
       setTimeout( check, 400);
     }
    
  }
};
check();
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
tiberiu.corbupro
0viewers