Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<title>JS Bin</title>
</head>
<body>
  <input type="text" placeholder="some text" class="search" onkeydown="search(this)"/>  <input type="text" placeholder="some text" class="search" onkeydown="search(this)"/>
</body>
</html>
  
 
function search(ele) {
    if(event.keyCode == 13) {
        alert(ele.value);        
    }
}
Output 300px

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

Dismiss x
public
Bin info
budhrampro
0viewers