Links

Lists

Latest Updates

Ruby On Rails List
Python list
Advanced Java
The JavaScript List
Apache Users
Full Disclosure
Linux Security

Search the archives!


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Javascript] Positioning in IE


  • From: hakan at backbase.com (Hakan Magnusson (Backbase))
  • Subject: [Javascript] Positioning in IE
  • Date: Mon Jul 26 03:51:56 2004

None of the previous replies, including the ones in your, are conformant 
to the DOM standard. In fact, it's not going to work on any browser 
except Internet Explorer, and I have a hard time seeing how 
"glava.style.pixelLeft=500px" could ever work.

I just added my $0.02 in case somebody wanted to do it the RIGHT way, 
and don't want to split their code up more than necessary.

Regards,
H

Troy III Ajnej wrote:
> Or, as Peter had allready repplyed
> 
> document.getElementById('glava').style.pixelLeft =  500
> 
> or even clearer and also many times faster instruction :
> 
> glava.style.pixelLeft=500px
> 
> Ask why if U like Iztok
> 
> 
>> From: "Hakan Magnusson (Backbase)" <hakan@xxxxxxxxxxxx>
>> Reply-To: "[JavaScript List]" <javascript@xxxxxxxxxx>
>> To: "[JavaScript List]" <javascript@xxxxxxxxxx>
>> Subject: Re: [Javascript] Positioning in IE
>> Date: Sun, 25 Jul 2004 16:07:47 +0200
>>
>>> document.getElementById('glava').style.left =  '500';
>>
>>
>> What unit do you want to use when specifying coordinates? 500 cows, 
>> 500 feet or, perhaps, 500 pixels?
>>
>> This could very well be the solution to your problem:
>>
>> document.getElementById('glava').style.left =  '500px';
>>
>> Best regards,
>> H
>>
>>
>> Iztok Polanic wrote:
>>
>>> Hi!
>>>
>>> Here's the <div> element:
>>>
>>> <div style="position:absolute; top:64px; left:190px;" align="center"
>>> id="glava">
>>>
>>>
>>> and here Javascript which tries to move the object:
>>>
>>> document.getElementById('glava').style.left =  '500';
>>>
>>> This works fine in Mozilla (Firerfox) but not in IE 6.
>>>
>>> Bye,
>>>
>>> Iztok -----Original Message-----
>>> From: javascript-bounces@xxxxxxxxxx 
>>> [mailto:javascript-bounces@xxxxxxxxxx]
>>> On Behalf Of Flavio Gomes
>>> Sent: 23. julij 2004 17:00
>>> To: [JavaScript List]
>>> Subject: Re: [Javascript] Positioning in IE
>>>
>>>
>>> Well, then you shouldn't have any problems..
>>>    Post your code, please
>>>
>>> Flavio Gomes
>>> flavio@xxxxxxxxxxxxxxxx
>>>
>>>
>>>
>>> Iztok Polanic wrote:
>>>
>>>
>>>> Hi!
>>>>
>>>> Element is <div> tag and it's positioned absolutely.
>>>>
>>>> Bye,
>>>>
>>>> Iztok -----Original Message-----
>>>> From: javascript-bounces@xxxxxxxxxx 
>>>> [mailto:javascript-bounces@xxxxxxxxxx]
>>>> On Behalf Of Peter Brunone
>>>> Sent: 23. julij 2004 16:16
>>>> To: '[JavaScript List]'
>>>> Subject: RE: [Javascript] Positioning in IE
>>>>
>>>>
>>>>     What's the element, and is it positioned relatively or
>>>> absolutely?
>>>>
>>>>     Try style.pixelLeft if you're specifying an integer without
>>>> units.
>>>>
>>>> -----Original Message-----
>>>> From: javascript-bounces@xxxxxxxxxx
>>>> [mailto:javascript-bounces@xxxxxxxxxx] On Behalf Of Iztok Polanic
>>>>
>>>> Hi!
>>>>
>>>> I hope this is my last question on positioning on this list :) I'm 
>>>> using
>>>> document.getElementById('').style.left to position an element to 
>>>> another
>>>> coordinates. It works fine in firerfox (Mozilla) 0.9 but not in IE 6.0.
>>>> Any clues?
>>>>
>>>> Bye,
>>>>
>>>> Iztok
>>>>
>>>>
>>>
>>> _______________________________________________
>>> Javascript mailing list
>>> Javascript@xxxxxxxxxx
>>> https://lists.LaTech.edu/mailman/listinfo/javascript
>>>
>>> _______________________________________________
>>> Javascript mailing list
>>> Javascript@xxxxxxxxxx
>>> https://lists.LaTech.edu/mailman/listinfo/javascript
>>>
>>>
>> _______________________________________________
>> Javascript mailing list
>> Javascript@xxxxxxxxxx
>> https://lists.LaTech.edu/mailman/listinfo/javascript
> 
> 
> _________________________________________________________________
> Protect your PC - get McAfee.com VirusScan Online 
> http://clinic.mcafee.com/clinic/ibuy/campaign.asp?cid=3963
> 
> _______________________________________________
> Javascript mailing list
> Javascript@xxxxxxxxxx
> https://lists.LaTech.edu/mailman/listinfo/javascript
> 
>