JSFiddle - React, Tailwind, and code Playground
by der_robert
HTML
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<div id="timeline_container">
<div id="timeline">
<ul>X
</ul>
</div>
</div>
JavaScript
(function( $ ){
$.fn.ebaytimeline = function( options ) {
// Create some defaults, extending them with any options that were provided
var settings = $.extend( {
start = '',
ende = ''
}, options);
return this.each(function() {
alert("sdfsdf");
});
};
})( jQuery );
$(document).ready(function() {
$("#timeline_container").ebaytimeline();
});