SyntaxFix
Write A Post
Hire A Developer
Questions
For me the issue turned out to be I was using es6's right arrow functions => as opposed to function ().
=>
function ()
Replacing => with function () resolved for me.
I had assumed it was a jQuery issue.