JQuery plugin :
(function ($) {
$.fn.HelloWorld = function (e) {
alert(e);
}
}(jQuery));
Use
Plugin :
$(document).ready(function () {
$("#temp").HelloWorld("Test
Plugin");
})
No comments:
Post a Comment