jQuery 1.8 이상 부타는 두번째 파라미터에 다양한 오브젝 속성을 추가할수 있다. $( "", { "class": "my-div", on: { touchstart: function( event ) { // Do something } }}).appendTo( "body" ); Attribute values in selector expressions must follow the rules for W3C CSS selectors; in general, that means anything other than avalid identifier should be surrounded by quotation marks.double quotes inside single quotes: $('a[rel="nofollow..
링크 : http://esimakin.github.io/twbs-pagination/#examples 소스 보니, 간결하고 잘 만들었다. 참고해야지! (function ($, window, document, undefined) { 'use strict'; var old = $.fn.twbsPagination; // PROTOTYPE AND CONSTRUCTOR var TwbsPagination = function (element, options) { this.$element = $(element); this.options = $.extend({}, $.fn.twbsPagination.defaults, options); this.init(this.options); }; TwbsPagination.proto..
var makeDraggable = function(element) { element = jQuery(element); // Move the element by the amount of change in the mouse position var move = function(event) { if ( element.data('mouseMove') ) { var changeX = event.clientX - element.data('mouseX'); var changeY = event.clientY - element.data('mouseY'); var newX = parseInt(element.css('left')) + changeX; var newY = parseInt(element.css('top')) +..
* jquery version 1.7 부터 jquery.Callback 함수가 지원되고 있습니다. -용도는 콜백 함수 목록을 관리할수 잇고 다양한 옵션등을 이용하여 CallBack 함수를 호출하여 사용할 수 있도록 제공 되었네요. $.CallBack(flag); $.CallBack 설명,예제 : http://api.jquery.com/jQuery.Callbacks/ http://addyosmani.com/blog/jquery-1-7s-callbacks-feature-demystified/ $.CallBack 구현 설명 : http://www.blog.highub.com/javascript/decoding-jquery-callbacks-object/ 다양한 옵션들 $.Callbacks( 'once' ) $..