The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

.each function, does not work properly

3 posters

Go down

Solved .each function, does not work properly

Post by Ahmed.K June 21st 2014, 7:23 pm

I try to add a dynamic css (max-height) for each element.
But i find one max-height for all the elements. any ideas?

Code:
$(document).ready(function(){
$('.cbreplay').each(function() {
var height = $('.cbrepl-left').height();
var maxheight = height - 28;
$('.cbnota-container').css({'max-height':maxheight});
});
});
avatar
Ahmed.K
Forumember

Posts : 349
Reputation : 4
Language : English

Back to top Go down

Solved Re: .each function, does not work properly

Post by Ange Tuteur June 21st 2014, 9:09 pm

Hello Ahmed.K,

You must use the this keyword to refer to the iterated element.

Ex :

I'm assuming .cbrepl-left is a child of .cbreplay, so use $(this).find()
Code:
var height = $(this).find('.cbrepl-left').height();
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Solved Re: .each function, does not work properly

Post by SSYT June 22nd 2014, 8:50 am

Try code new Smile
Code:
$(document).ready(function(){
   $('.cbreplay').each(function(a, b) {
      var height = $('.cbrepl-left', b).height();
      var maxheight = height - 28;
      $('.cbnota-container', b).css({'max-height':maxheight});
   });
});
SSYT
SSYT
Forumember

Male Posts : 77
Reputation : 15
Language : RO-10, EN-3, FR-1
Location : Romania

http://help.forumgratuit.ro/forum

Back to top Go down

Solved Re: .each function, does not work properly

Post by Ahmed.K June 24th 2014, 11:38 pm

Ah, thanks, It works fine now.
avatar
Ahmed.K
Forumember

Posts : 349
Reputation : 4
Language : English

Back to top Go down

Solved Re: .each function, does not work properly

Post by Ange Tuteur June 25th 2014, 12:00 am

Topic archived

Have a good day. Smile
Ange Tuteur
Ange Tuteur
Forumaster

Male Posts : 13246
Reputation : 3000
Language : English & 日本語
Location : Pennsylvania

https://fmdesign.forumotion.com

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum