Top Ten jQuery Plugin
credit : http://webtopten.wordpress.com/2012/10/23/top-ten-useful-jquery-plugins/ Hey are you a web Developer or a Web Designer, if yes then this Jquery plugins can be useful to you. Here is the list of top ten jquery…
credit : http://webtopten.wordpress.com/2012/10/23/top-ten-useful-jquery-plugins/ Hey are you a web Developer or a Web Designer, if yes then this Jquery plugins can be useful to you. Here is the list of top ten jquery…
ไฟล์ index.html ใส่ฟอร์ม <!doctype html> <html lang="en"> <head> <script type="text/javascript" src="jquery-1.7.1.min.js"></script> <script type="text/javascript" src="myscript.js"></script> <script type="text/javascript" src="jquery.validate.min.js"></script> <script type="text/javascript" src="jQueryPlugin.js"></script> </head> <body> <div id="info"><form id="commentForm" action=""> <input type="text" id="hello" value=""…
/// <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…
http://bassistance.de/jquery-plugins/jquery-plugin-validation/