Skip to content

Instantly share code, notes, and snippets.

@dstyle0210
Last active August 29, 2015 14:04
Show Gist options
  • Select an option

  • Save dstyle0210/9edb8f8770bc37759444 to your computer and use it in GitHub Desktop.

Select an option

Save dstyle0210/9edb8f8770bc37759444 to your computer and use it in GitHub Desktop.
a의 href가 있어도 실행하지 않는 구문. return false;
//jQuery Extend unClick : dstyle
//href가 있을때 이벤트가 없어지도록 처리
(function($){
$.fn.unclick = function(){
this.each(function(n,m){
m.onclick=function(){
return false;
}
});
return this;
};
})(jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment