Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript jQuery Basics (2014) Creating a Simple Lightbox Perform: Part 1

mohammed mayat
mohammed mayat
4,228 Points

uncaught syntax error

i am getting uncaught syntac error on line 6

// promlem when user click on image the image goes to dead end and they have go back

// create an overlay with the large image in lightbox

//1. user click on a link which surround the image, we want to capture a link to an image line 6 = $("#imageGallery a").click(function)(event){ event.preventDefault(); var href = $(this).attr("href"); console.log() //1.1 show the overly //1.2 show the overlay with the image linked in the link //1.3 get child alt attribute and get caption }); //2 add overlay //2.1 add image //2.2 add caption

//3 when overlay is clicked //3.1 hide the overlay

1 Answer

Steven Parker
Steven Parker
229,732 Points

There seems to be a stray closing parenthesis right after the word "function" in this part: "function)(event){"