JSFiddle - React, Tailwind, and code Playground

by anubhabB

HTML

<div id="test"></div>

JavaScript

(function($){
  var App = function(){};
	
	App.prototype.callables = {
	  hello: function(){
			alert('Hello');
		},
	  hi: function(){
		  alert('hi');
		}
	}
	
	$.fn.app = function(){
		new App().callables;
	}
})(jQuery)

var x = $('#test').app();
x.hello()