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
Month: December 2012
jQuery Validate
ไฟล์ 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>
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) เอาไปใช้กับไฟล์
jQuery Validation
http://bassistance.de/jquery-plugins/jquery-plugin-validation/
ทำ Web Service รัน WCF + jQeury คือสามารถรันได้เลย
1) สร้าง Project ใหม่เป็น Web ASP.NET Empty หลังจากนั้น Add new item LINGQ to SQL Class แล้วลาก Table มาวาง 2) ทำการ
ทำ WindowsService ให้รันออโต้บริการ Service
1) เริ่มแรกสร้างโปรเจ็คใหม่เป็น Windows Service Application (C#) และใส่โค้ดในหน้า Service1.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.Linq;
การทำ Web service ด้วย WCF + Restful + Json PART II
ต่อจากของเดิม http://kungtee.rmutp.ac.th/index.php/wcf-restful-json/ ต่อจากครั้งที่แล้วทำ table และปุ่ม <!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> </head> <body> <input type=”text”
การทำ Web service ด้วย WCF + Restful + Json
WCF จะสามารถบริการ Web service ได้ทั้ง windows application กับ web application 1) open visual studio 2012 2) new project windows application
Login Panel
$(document).ready(function(){ $(‘#login a’).toggle(function(){ $(this) .addClass(‘active’) .next(‘from’) .animate({‘height’ : ‘show’},{ duration: ‘slow’, easing: ‘easeOutBounce’ }); },function(){ $(this) .removeClass(‘active’) .next(‘form’) .slideUp(); });
