I've recently built a site that houses multiple videos. All was working well until yesterday, but I realized some of the clickable videos I have are no longer clickable.
I'm receiving the error, Uncaught SyntaxError: missing ) after argument list in multiple lines and was wondering how I could resolve the issue?
Here is the code for which I am receiving the error for -
var myvideo30 = $(""); $("#click30").click(function() { //Get rid of that old HTML content $("#video-slider").empty(); //Bring in the new content! $("#video-slider").append(myvideo3); $("#paul-4")[0].load(); $("#paul-4")[0].play(); });
There is also a snapshot of the code for reference here.
And the direct site can be accessed here.
Any advice and/or solutions are greatly appreciated, thank you very much!