Oct 15, 2007 #1 tviman Programmer Jul 25, 2002 2,123 US I've looked around the 'net and I think I already know the answer but I'd thought I'd throw this out for S & G's... is it possible to calculate the height of a fixed-width div container? Thanks
I've looked around the 'net and I think I already know the answer but I'd thought I'd throw this out for S & G's... is it possible to calculate the height of a fixed-width div container? Thanks
Oct 15, 2007 #2 ca8msm Programmer May 9, 2002 11,327 GB You should be able to do this with javascript. Try asking here: forum216 ------------------------------------------------------- Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] [URL unfurl="true"]http://mdssolutions.co.uk[/url] - Delivering professional ASP.NET solutions [URL unfurl="true"]http://weblogs.asp.net/marksmith[/url] Upvote 0 Downvote
You should be able to do this with javascript. Try asking here: forum216 ------------------------------------------------------- Mark, [URL unfurl="true"]http://aspnetlibrary.com[/url] [URL unfurl="true"]http://mdssolutions.co.uk[/url] - Delivering professional ASP.NET solutions [URL unfurl="true"]http://weblogs.asp.net/marksmith[/url]
Oct 15, 2007 #3 nickdel Programmer May 11, 2006 367 GB tviman, you would have to do this with javascript (correct forum forum216: Javascript). Code: document.getElementById('MyDiv').offsetHeight; Cheers nick Upvote 0 Downvote
tviman, you would have to do this with javascript (correct forum forum216: Javascript). Code: document.getElementById('MyDiv').offsetHeight; Cheers nick
Oct 15, 2007 #4 feherke Programmer Aug 5, 2002 9,541 RO Hi Personally would certainly start from Peter-Paul Koch's article, Element dimensions. Feherke. http://rootshell.be/~feherke/ Upvote 0 Downvote
Hi Personally would certainly start from Peter-Paul Koch's article, Element dimensions. Feherke. http://rootshell.be/~feherke/
Oct 15, 2007 Thread starter #5 tviman Programmer Jul 25, 2002 2,123 US Thank you all for pointing me in the right direction! Upvote 0 Downvote