I don't understand what I'm doing wrong here... line 3 is reporting missing : after property ID

$(document).ready(function() {

    $('#imagegallery img').each(function({$(this).css({ width: '100%'});});

    $('#imagegallery').cycle({
        timeout: 0,
        fx: 'scrollHorz',
        width: '100%',
        height: 'auto',
        next: '.next',
        prev: '.prev' 
    });



    $("#imagegallery").touchwipe({
        wipeLeft: function() {
            $("#imagegallery").cycle("next");
        },
        wipeRight: function() {
            $("#imagegallery").cycle("prev");
        }
    });
});
link|improve this question

38% accept rate
feedback

3 Answers

up vote 5 down vote accepted

Problem is with this line:

$('#imagegallery img').each(function({$(this).css({ width: '100%'});});

should be:

    // missing ) --------------------v
$('#imagegallery img').each(function(){$(this).css({ width: '100%'});});

Although you can shorten it like this:

$('#imagegallery img').css({ width: '100%'});
link|improve this answer
1  
I'd say it should be: $('#imagegallery img').css({ width: '100%'}); ;) – Nick Craver Oct 26 '10 at 17:37
@Nick - Agreed. Just finished updating. :o) – user113716 Oct 26 '10 at 17:39
+1 - good eyes – Nick Craver Oct 26 '10 at 17:40
feedback

You're missing a close paren in

// $('#imagegallery img').each(function({$(this).css({ width: '100%'});}); 
// should be:
$('#imagegallery img').each(function(){$(this).css({ width: '100%'});});

Could that be it?

link|improve this answer
feedback

I also have an error show to definition of my function like below.

function test(a) {
   //do something;
}

My case to solve the problem by change it to:

test : function(a) {
   //do something;
}

The error is gone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.