I am new to the jQuery plugin and Handlebar/Mustache template development. I am in the process of creating a jQuery plugin to show a modal popup. The code below is my plugin at the earliest iteration. It works. I want to move all the HTML code to the plugin section and plan to use Hanlebar.js or Mustache.js templates to construct the popup window HTML. I am not sure how to refer to either the Hanlebar.js or Mustache.js files or their CDN's in the plugin.
(function ($) {
$.fn.popup = function () {
$("#startOverModal").modal("show");
};
}(jQuery));