How to fix a JQuery error [closed]

You have two errors:

  1. The comma (,) after 'use strict' should be a semicolon (;).

  2. You need a closing }); to match the outermost call to jQuery.

Leave a Comment