Side navigation
    Ticket #5934: test.html
  
  
  
    File test.html, 0.4 KB (added by starsolaris, January 26, 2010 09:58AM UTC)
    
      example
    
  
  
    
      
      <html>
<head>
	<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
	<script type="text/javascript">
		$(document).ready(function(){
			$("#test").change(function(){
				alert("aaa");
			});
		});
	</script>
</head>
<body>
	<select id="test" size="3">
		<option value="1">1</option>
		<option value="2">2</option>
	</select>
</body>
    
  
  
    Download in other formats:
    Original Format
  
File test.html, 0.4 KB (added by starsolaris, January 26, 2010 09:58AM UTC)
example
<html>
<head>
	<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.1.min.js"></script>
	<script type="text/javascript">
		$(document).ready(function(){
			$("#test").change(function(){
				alert("aaa");
			});
		});
	</script>
</head>
<body>
	<select id="test" size="3">
		<option value="1">1</option>
		<option value="2">2</option>
	</select>
</body>