Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.11.3.js"></script>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>JS Bin</title>
  <script type="text/javascript">
$(function (){
    $("#positive_number").myvalidate({
        filter_type: "positiveNumber", 
        enterCallback: function (obj){
            //enter key callback
            alert(parseFloat(obj.val()));
        }, valCallback: function (val){
            //pressup callback,  return value
            $("div").html(val);
        }
    });
    $("#positive_number").focus();
});
</script>
</head>
<body>
<input id="positive_number" placeholder="input positive number" />
<br/>result:
<div></div>
</body>
</html>
Output

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

Dismiss x
public
Bin info
caipeimingpro
0viewers