frenchie
frenchie

Reputation: 51927

more concise jquery

I'm sure this is an easy question but I'll ask anyway. How do I make this into more concise code:

        $(window).scroll(function () { ScrollTheDivs(); })
        $(window).resize(function () { ScrollTheDivs(); })

Thanks.

Upvotes: 4

Views: 70

Answers (1)

meder omuraliev
meder omuraliev

Reputation: 186562

$(window).bind('scroll resize', ScrollTheDivs);

Upvotes: 6

Related Questions