I'm wondering if anyone else has run into this problem with jQuery and mobile devicesI've inserted this into my html\[code\]<meta name="viewport" content="width=device-width, initial-scale=0, maximum-scale=1">\[/code\]I'm trying to get the DOCUMENT width and height, \[code\] $(document).width(); $(document).height();\[/code\]but it's returning the viewport width and height instead. If I remove the viewport tag in the html it works and returns the correct number. I'm trying to find a way to get the document dimensions with the tag in place.Any ideas?