<img> width height | | |
I am trying to be able to manipulate the width and height of an <img> but do
not seem to be able.
"Yes", I know the JavaScript will "not" manip anything, which is ok. I
simply do not know how to capture the width or height. Once I can do that I
can manipulate them.
Here is the HTML for the <img>
<div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg)">
<img src="images/FirePlace.jpg" width="480" height="640" id="fpImg" />
</div>
Here is the JavaScript I tried to manipulate the <img>
function imgSize(myID,myImg)
{
var myDiv= document.getElementById(myID); //get correct <div>
var myImage=document.getElementById(myImg); //get correct <img>
var myWidth=myImage.style.width; //attempt to capture width of <img>
var myHeight=myHeight.style.height; //attempt to capture height of <img>
alert("myWidth+, +myHeight"); //show if I this function works
}
Will someone please tell me what I am doing wrong
--
Totus possum, totum Deum.
Totus ero, totum meum.
WSW | | | | re: <img> width height
On Fri, 21 Apr 2006 21:46:37 GMT, News wrote:
[color=blue]
> I am trying to be able to manipulate the width and height of an <img> but do
> not seem to be able.
>
> "Yes", I know the JavaScript will "not" manip anything, which is ok. I
> simply do not know how to capture the width or height. Once I can do that I
> can manipulate them.
>
> Here is the HTML for the <img>
> <div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg)">[/color]
There is a syntax error in this line, near the end. You're
missing an apostrophe. It should go:
<div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg');">
Don't know if that was what was breaking the code though. | | | | re: <img> width height
News a écrit :[color=blue]
> I am trying to be able to manipulate the width and height of an <img> but do
> not seem to be able.[/color]
[color=blue]
> <div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg)">
> <img src="images/FirePlace.jpg" width="480" height="640" id="fpImg" />
> </div>
>
> Here is the JavaScript I tried to manipulate the <img>
> function imgSize(myID,myImg)
> {
> var myDiv= document.getElementById(myID); //get correct <div>
> var myImage=document.getElementById(myImg); //get correct <img>
> var myWidth=myImage.style.width; //attempt to capture width of <img>
> var myHeight=myHeight.style.height; //attempt to capture height of <img>
> alert("myWidth+, +myHeight"); //show if I this function works
> }
>
> Will someone please tell me what I am doing wrong[/color]
simplest way :
<img src="pict.jpg"
onmousover="alert('width = '+this.width+' height = '+this.height)";>
maybe your code would be better with :
var myWidth= myImage.style&&myImage.style.width? myImage.style.width :
myImage.width; //attempt to capture width of <img>
var myWidth= myImage.style&&myImage.style.height? myImage.style.height :
myImage.height; //attempt to capture height of <img>
idea :
If your image didn't get a width or height style, you can't catch it.
--
Stephane Moriaux et son [moins] vieux Mac | | | | re: <img> width height
test wrote:[color=blue]
> On Fri, 21 Apr 2006 21:46:37 GMT, News wrote:
>[color=green]
>> I am trying to be able to manipulate the width and height of an
>> <img> but do not seem to be able.
>>
>> "Yes", I know the JavaScript will "not" manip anything, which is ok.
>> I simply do not know how to capture the width or height. Once I can
>> do that I can manipulate them.
>>
>> Here is the HTML for the <img>
>> <div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg)">[/color]
>
> There is a syntax error in this line, near the end. You're
> missing an apostrophe. It should go:
>
> <div class="ImgMnp" id="myImg"
> onmouseover="imgSize('myImg','fpImg');">
>
> Don't know if that was what was breaking the code though.[/color]
I did not know I need that apostrophe thanks.
Nope did not correct the problem, if I take out these two lines
var myWidth=myImage.style.width;
var myHeight=myHeight.style.height;
the function works, put them in the function crashes.
--
Totus possum, totum Deum.
Totus ero, totum meum.
WSW | | | | re: <img> width height
ASM wrote:[color=blue]
> News a écrit :[color=green]
>> I am trying to be able to manipulate the width and height of an
>> <img> but do not seem to be able.[/color]
>[color=green]
>> <div class="ImgMnp" id="myImg" onmouseover="imgSize('myImg','fpImg)">
>> <img src="images/FirePlace.jpg" width="480" height="640" id="fpImg"
>> /> </div>
>>
>> Here is the JavaScript I tried to manipulate the <img>
>> function imgSize(myID,myImg)
>> {
>> var myDiv= document.getElementById(myID); //get correct <div>
>> var myImage=document.getElementById(myImg); //get correct <img>
>> var myWidth=myImage.style.width; //attempt to capture width of
>> <img> var myHeight=myHeight.style.height; //attempt to capture
>> height of <img> alert("myWidth+, +myHeight"); //show if I this
>> function works }
>>
>> Will someone please tell me what I am doing wrong[/color]
>
> simplest way :
>
> <img src="pict.jpg"
> onmousover="alert('width = '+this.width+' height = '+this.height)";>
>
> maybe your code would be better with :
>
> var myWidth= myImage.style&&myImage.style.width? myImage.style.width :
> myImage.width; //attempt to capture width of <img>
> var myWidth= myImage.style&&myImage.style.height?
> myImage.style.height : myImage.height; //attempt to capture height
> of <img>
> idea :
> If your image didn't get a width or height style, you can't catch it.[/color]
What does this mean??[color=blue]
> var myWidth= myImage.style&&myImage.style.width? myImage.style.width :
> myImage.width; //attempt to capture width of <img>[/color]
At first I thought it was a triune if true this else that type statement but
I don't have a clue what it is.
--
Totus possum, totum Deum.
Totus ero, totum meum.
WSW | | | | re: <img> width height
News a écrit :[color=blue]
>
> Nope did not correct the problem, if I take out these two lines
>
> var myWidth=myImage.style.width;
> var myHeight=myHeight.style.height;[/color]
Hu ?
myHeight=myHeight
from where comes this 2nd myHeight ?
would be better with the image 'myImag' , no ?
var myWidth=myImage.style.width; //attempt to capture width of <img>
var myHeight=myImage.style.height; //attempt to capture height of <img>
// ^^^^^^^
alert("myWidth+, +myHeight"); //show if I this function works
}
--
Stephane Moriaux et son [moins] vieux Mac | | | | re: <img> width height
News a écrit :[color=blue]
>
> What does this mean??
>[color=green]
>>var myWidth= myImage.style&&myImage.style.width? myImage.style.width :
>> myImage.width; //attempt to capture width of <img>[/color]
>
> At first I thought it was a triune if true this else that type statement but
> I don't have a clue what it is.[/color]
yes it was (would have to be).
if myImage has style and myImage has style width,
miWidth is myImage.style.width
else
miWidth is myImage width
because perhaps your image has no style (or no width or height style) ?
in fact the error was much more stupid
(all as I've done in my code myWidth=myImage.style.height ! !)
--
Stephane Moriaux et son [moins] vieux Mac | | | | re: <img> width height
ASM wrote:[color=blue]
> News a écrit :[color=green]
>>
>> Nope did not correct the problem, if I take out these two lines
>>
>> var myWidth=myImage.style.width;
>> var myHeight=myHeight.style.height;[/color]
>
> Hu ?
>
> myHeight=myHeight
>
> from where comes this 2nd myHeight ?
>
> would be better with the image 'myImag' , no ?
>
> var myWidth=myImage.style.width; //attempt to capture width of <img>
> var myHeight=myImage.style.height; //attempt to capture height of
> <img> // ^^^^^^^
> alert("myWidth+, +myHeight"); //show if I this function works
> }[/color]
Greif I HATE it when I make stupid mistakes and simply cannot see them. Yup
it works and I have egg on my face.
Thanks and have a great weekend
--
Totus possum, totum Deum.
Totus ero, totum meum.
WSW | | | | re: <img> width height
ASM wrote:[color=blue]
> News a écrit :[color=green]
>>
>> What does this mean??
>>[color=darkred]
>>> var myWidth= myImage.style&&myImage.style.width?
>>> myImage.style.width : myImage.width; //attempt to capture width of
>>> <img>[/color]
>>
>> At first I thought it was a triune if true this else that type
>> statement but I don't have a clue what it is.[/color]
>
> yes it was (would have to be).
>
> if myImage has style and myImage has style width,
> miWidth is myImage.style.width
> else
> miWidth is myImage width
>
> because perhaps your image has no style (or no width or height style)
> ?
> in fact the error was much more stupid
> (all as I've done in my code myWidth=myImage.style.height ! !)[/color]
I hope one day I will be able to avoid stupid mistakes or at the very least
find them before I air them to the WORLD ;-)
--
Totus possum, totum Deum.
Totus ero, totum meum.
WSW | | | | re: <img> width height
News a écrit :[color=blue]
>
> I hope one day I will be able to avoid stupid mistakes or at the very least
> find them before I air them to the WORLD ;-)[/color]
You may spend a long time runing around a stupid mistake
more they are stupid more it is difficult to find them
a new eye cand find them in seconds
ngs are there for that too.
--
Stephane Moriaux et son [moins] vieux Mac | | | | re: <img> width height
News wrote:[color=blue]
> I am trying to be able to manipulate the width and height of an <img> but do
> not seem to be able.[/color]
Listen, guys: "Micro$oft must die, and stuff"- but if you still want to
make your solution workable on the damned IE (which is not mandatory
but presuming if), it is not a shame at all to visit
<http://msdn.microsoft.com> and read what the producer has to say about
your question.
MSDN is going to put this sentence in bold soon I guess: "You want to
manipulate width/height - you *don't* hardcode it through the img
attributes, you use style rules instead". The rest of the attractive
reading is on MSDN :-) |  | Similar JavaScript / Ajax / DHTML bytes | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 226,449 network members.
|