From 3e687f1a8ccb1cd0d52a966005551d528ca141df Mon Sep 17 00:00:00 2001 From: Boris Verkhovskiy Date: Sat, 6 Apr 2024 08:33:50 -0700 Subject: Remove leading and trailing empty lines in code blocks --- jquery.html.markdown | 3 --- 1 file changed, 3 deletions(-) (limited to 'jquery.html.markdown') diff --git a/jquery.html.markdown b/jquery.html.markdown index cdcb89d9..8c411dfb 100644 --- a/jquery.html.markdown +++ b/jquery.html.markdown @@ -14,7 +14,6 @@ Because jQuery is a JavaScript library you should [learn JavaScript first](https **NOTE**: jQuery has fallen out of the limelight in recent years, since you can achieve the same thing with the vanilla DOM (Document Object Model) API. So the only thing it is used for is a couple of handy features, such as the [jQuery date picker](https://api.jqueryui.com/datepicker) (which actually has a standard, unlike the `` HTML element), and the obvious decrease in the code length. ```js - /////////////////////////////////// // 1. Selectors @@ -125,8 +124,6 @@ var heights = []; $('p').each(function() { heights.push($(this).height()); // Adds all 'p' tag heights to array }); - - ``` ## Further Reading -- cgit v1.2.3