DonJayamanne / jquerysnippets

jQuery Code Snippets for Visual Studio Code

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add new snippets

tbhaxor opened this issue · comments

There are some snippets missing which are also used in web development

  1. jqChildren
$("#item").children();
$("#item").children('.class');
  1. jqParents
$("#item").parents();
$("#item").parents('.class');
  1. jqParent
$("#item").parent();
$("#item").parent('.class');