Uncaught SyntaxError: missing ) after argument list error

0 votes
217 views
added Feb 12, 2020 in Javascript by lcjr First Warrant Officer (11,850 points)
// The tag not properly close.

// e.g 
$(AppClose).click(function () {
  HideAppBanner();
}

// Fix it with:
$(AppClose).click(function () {
  HideAppBanner();
});

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...