Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>Check isArray Demo</title>
<script  type="text/javascript"
        src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.3/jquery.min.js">
    </script>
  
<script type="text/javascript">
  $(document).ready(function(){
$( document ).ajaxStart(function() {
  $( ".log" ).text( "Triggered ajaxStart handler." );
});
  $( ".result" ).click(function() {
  $( ".result2" ).load( "ajax/test.html" );
});
    var er = [1,2,3];
    alert($.isArray(er));
    
  });
 
    
    
   
  });
   
    
  
  </script>
</head>
<body>
  <div class='result'>trigger</div>
  <div class='result2'>hhh</div>
  <div class='result3'></div>
    
    
</body>
</html>
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers