Dave Posted May 10, 2010 Posted May 10, 2010 Hey, I've been trying to use jQuery each to count the total height of all elements with the same class. The code below does not work and the alert that I put in for debugging always returns as 0. Any help would be appreciated. var current_th = 0; $('.noteWindow').each( function(index, domEle) { var current_th = + $(this).height(); }); alert(current_th); Quote
Zeggy Posted May 10, 2010 Posted May 10, 2010 Remove 'var' in the loop, you are redeclaring current_th as a local variable. Quote
Dave Posted May 10, 2010 Author Posted May 10, 2010 Thanks, Worked a treat. I did have to do current_th+=+ blah Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.