I have this error
Uncaught SyntaxError: missing ) after argument list
This jquery is nestled into my JS code. When I remove this JQUERY code it works fine.
- $(funtion (){
- $.ajax({
- type: 'GET',
- url: 'test.php',
- sucess: function(data){
- container.innerHTML += "<div class=\"library-item-photo\"><img src=\"image-files/cover-thumb-md.php?ID=4059\" class=\"library-img\"></a></div> ";
- }
- });
- });