Tag: plugin jQuery

jQuery สร้าง Plugin function ใช้เอง

/// <reference path="jquery-1.7.1.min.js" /> (function ($) { //สร้างชื่อฟังชั่นไว้ใช้งานเอง $.fn.myhightlight = function () { return this.each(function(){ $(this).css('background-color','#aa0000') }); } })(jQuery) เอาไปใช้กับไฟล์ MyScript.js /// <reference path="jquery-1.7.1.min.js" /> /// <reference path="jQueryPlugin.js" /> $(document).ready(function…