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");
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"jQuery UI" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/jquery-ui?hl=en
-~----------~----~----~----~------~----~------~--~---