You have two errors:
-
The comma (
,
) after'use strict'
should be a semicolon (;
). -
You need a closing
});
to match the outermost call tojQuery
.
You have two errors:
The comma (,
) after 'use strict'
should be a semicolon (;
).
You need a closing });
to match the outermost call to jQuery
.