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-2.1.4.js"></script>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  <div id="x"></div>
</body>
</html>
 
(function($){
  $.fn.plugin1 = function(value) {
    var options = $.extend(this.data('plugin1-options'), {x: value});
    this.data('plugin1-options', options)
    console.log(this.data());
  };
  $.fn.plugin2 = function(value) {
    var options = $.extend(this.data('plugin2-options'), {x: value});
    this.data('plugin2-options', options)
    console.log(this.data());
  }
}(jQuery))
jQuery('#x').plugin1('X')
jQuery('#x').plugin2('Y')
Output 300px

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

Dismiss x
public
Bin info
Poetropro
0viewers