Skip to content

Instantly share code, notes, and snippets.

@ituki
Created February 26, 2014 03:43
Show Gist options
  • Save ituki/9223146 to your computer and use it in GitHub Desktop.
Save ituki/9223146 to your computer and use it in GitHub Desktop.
【jQuery】親要素を削除する ref: http://qiita.com/ituki_b/items/e519185cb48b182d04b1
<div>
<p>ここをクリックする</p>
</div>
$('div p').click(function(){
$(this).parent().remove(); //divとその中身が全て消えちゃう
});
$('div p').click(function(){
$(this).unwrap(); //divだけを消す
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment