jQuery is being used to set the height of each element, I want to override this by another bit of jQuery.
The code works as I've tried it on a child div:
var height = $('#module-104').height();
console.log(height);
$("#module-103").css({
'height' : height,
'padding-top' : 0
});
I've tried wrapping my code in the following tags to load it last but with no success.
$(document).live("on", function(){
});
and
$(window).bind("load", function() {
});
Any ideas? or would it be a simple case of adding !important to the height? if so what's the syntax for that in jQuery?
Cheers