Hi everyone,
I have my own simple equal heights code in jQuery to make two columns the same height:
var content = $("#content");
var sidebar = $("#sidebar");
var maxHeight = Math.max(content.height(), sidebar.height());
content.height(maxHeight);
sidebar.height(maxHeight);
This JS file is included in my header file. I have a print stylesheet and the height of the #content
div is an issue when this JS is run. I need to make the jQuery code not happen when on this print CSS. Any ideas?