Can't get .ui-dialog-titlebar height in Opera

Can't get .ui-dialog-titlebar height in Opera


Hello,
I can't seem to get the Dailog titlebars height in Opera. I've tried
numerous approaches. Try the below code in Opera with any page that
contains a Dialog.
Thanks
var thisObj = $(".ui-dialog-titlebar");
var heightCalculation = parseInt(thisObj.css('height')) ;    alert("CSS:
Height for the (" + thisObj.selector + ") reads as " +
heightCalculation +"px");
var heightCalculation = parseInt(thisObj.height()) ;
alert("jQuery: .height() for the (" + thisObj.selector + ") reads as "
+ heightCalculation +"px");
var heightCalculation = parseInt(thisObj.innerHeight()) ;
alert("jQuery: .innerHeight() for the (" + thisObj.selector + ") reads
as " + heightCalculation +"px");
var heightCalculation = parseInt(thisObj.outerHeight()) ;
alert("jQuery: .outerHeight() for the (" + thisObj.selector + ") reads
as " + heightCalculation +"px");