せかいや

いまいるここを、おもしろく http://sekai-in-the-box.appspot.com/

【jQuery 】メソッドチェーン

 
■topic summary
study about jQuery method chain.

<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<button id="hoge">hoge</button>
<script>
$("#hoge").click(function(){
 $('<div><a></a></div>')
  .find('a')
   .text('add now')
   .attr('href', 'http://jquery.com')
  .end()
  
  .appendTo('body');
});
</script> 

 
ただしデバッグはしにくくなる。