<img> width height

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • News

    <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="im gSize('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,my Img)
    {
    var myDiv= document.getEle mentById(myID); //get correct <div>
    var myImage=documen t.getElementByI d(myImg); //get correct <img>
    var myWidth=myImage .style.width; //attempt to capture width of <img>
    var myHeight=myHeig ht.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


  • test

    #2
    Re: &lt;img&gt; 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="im gSize('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="im gSize('myImg',' fpImg');">

    Don't know if that was what was breaking the code though.

    Comment

    • ASM

      #3
      Re: &lt;img&gt; 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="im gSize('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,my Img)
      > {
      > var myDiv= document.getEle mentById(myID); //get correct <div>
      > var myImage=documen t.getElementByI d(myImg); //get correct <img>
      > var myWidth=myImage .style.width; //attempt to capture width of <img>
      > var myHeight=myHeig ht.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="ale rt('width = '+this.width+' height = '+this.height)" ;>

      maybe your code would be better with :

      var myWidth= myImage.style&& myImage.style.w idth? myImage.style.w idth :
      myImage.width; //attempt to capture width of <img>
      var myWidth= myImage.style&& myImage.style.h eight? myImage.style.h eight :
      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

      Comment

      • News

        #4
        Re: &lt;img&gt; 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="im gSize('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="im gSize('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=myHeig ht.style.height ;

        the function works, put them in the function crashes.
        --

        Totus possum, totum Deum.
        Totus ero, totum meum.
        WSW


        Comment

        • News

          #5
          Re: &lt;img&gt; 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="im gSize('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,my Img)
          >> {
          >> var myDiv= document.getEle mentById(myID); //get correct <div>
          >> var myImage=documen t.getElementByI d(myImg); //get correct <img>
          >> var myWidth=myImage .style.width; //attempt to capture width of
          >> <img> var myHeight=myHeig ht.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="ale rt('width = '+this.width+' height = '+this.height)" ;>
          >
          > maybe your code would be better with :
          >
          > var myWidth= myImage.style&& myImage.style.w idth? myImage.style.w idth :
          > myImage.width; //attempt to capture width of <img>
          > var myWidth= myImage.style&& myImage.style.h eight?
          > myImage.style.h eight : 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.w idth? myImage.style.w idth :
          > 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


          Comment

          • ASM

            #6
            Re: &lt;img&gt; 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=myHeig ht.style.height ;[/color]

            Hu ?

            myHeight=myHeig ht

            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=myImag e.style.height; //attempt to capture height of <img>
            // ^^^^^^^
            alert("myWidth+ , +myHeight"); //show if I this function works
            }


            --
            Stephane Moriaux et son [moins] vieux Mac

            Comment

            • ASM

              #7
              Re: &lt;img&gt; width height

              News a écrit :[color=blue]
              >
              > What does this mean??
              >[color=green]
              >>var myWidth= myImage.style&& myImage.style.w idth? myImage.style.w idth :
              >> 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.w idth
              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

              Comment

              • News

                #8
                Re: &lt;img&gt; 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=myHeig ht.style.height ;[/color]
                >
                > Hu ?
                >
                > myHeight=myHeig ht
                >
                > 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=myImag e.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


                Comment

                • News

                  #9
                  Re: &lt;img&gt; width height

                  ASM wrote:[color=blue]
                  > News a écrit :[color=green]
                  >>
                  >> What does this mean??
                  >>[color=darkred]
                  >>> var myWidth= myImage.style&& myImage.style.w idth?
                  >>> myImage.style.w idth : 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.w idth
                  > 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


                  Comment

                  • ASM

                    #10
                    Re: &lt;img&gt; 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

                    Comment

                    • VK

                      #11
                      Re: &lt;img&gt; 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 :-)

                      Comment

                      Working...