Skip to content

Instantly share code, notes, and snippets.

@anantja-in
anantja-in / Intro to JQuery.md
Last active August 20, 2019 17:09
A long long time ago, I learnt jQuery and made these notes. They used to be helpful in the earliest days when I was still getting used to programming the web.

Introduction

The following two do the same thing:

$(document).ready(function() {});
$(function() {});