When I run this code:
$( document ).ready(function() {
$altura = $('.slb_container').height();
console.log($altura);
});
I get "null" on the console. But when I run $('.slb_container').height();
directly in the console I get an integer value.
What am I doing wrong?
You are trying to get the property of an array. This is happening because you're getting all elements with the class of
.slb_container
.You have 2 easy options:
Use a unique ID in your HTML to identify your element
Index into your class array with
$('.slb_container')[i]
and then wrap it in$()
to objectify it as a jQuery object.