There are two functions that returns me Left & Top coordinate of iframe in IE, But not in any ohter Browser...
function findPosCurleft( obj)
{
var curleft=0;
//alert('obj' + obj);
if(obj!=null)
{
if(obj.offsetPa rent)
{
//alert('obj.offs etParent' + obj.offsetParen t);
curleft=obj.off setLeft;
//alert('curleft' + curleft);
while(obj=obj.o ffsetParent)...
Leave a comment: