User Profile

Collapse

Profile Sidebar

Collapse
hoist1138
hoist1138
Last Activity: Jan 23 '08, 02:00 AM
Joined: Jan 8 '08
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • thanks everyone, all masters...
    See more | Go to post

    Leave a comment:


  • hoist1138
    replied to css firefox nightmare!!
    Warder, not that this is the solution, but you also may want to consider zeroing out your margins for everything, and THEN start adjusting your layout, Browsers may render Default Margins differently, here is a great little snipet to use before and CSS rules get defined:
    *{
    margin:0px;
    }
    //this will FORCE all browsers to render with 0 margin, good luck,...
    See more | Go to post

    Leave a comment:


  • by the way to see the real world example for my client.....
    http://www.pet-memorial-markers.com/...owerVases.html
    the vase name at the bottom of the graphic is the graphic name extracted from the path
    again, try it in FF or Safari, and then.......IE and BLAM, no dynamic src attribute rendering to the page.....

    one solution I was thinking of was doing detection script for IE,...
    See more | Go to post

    Leave a comment:


  • here is an example of an image name that the script gets and displays on the page perfectly fine with FF and safari..

    [CODE=javascript]//heres the HTML the image src attrib I want to grab....
    <img src="Single/VG-001B.jpg" alt="" name="placehold er" width="450" height="350" id="placeholder " />

    //heres the javascript targeting that src attrib.........
    See more | Go to post
    Last edited by acoder; Jan 11 '08, 08:41 AM. Reason: Added code tags

    Leave a comment:


  • opps, thanks for the look...I forgot to include it in the Original post, Again heres the weird thing, It works great in all other browsers, and I have tried to look google over and over. Im not sure where to look for this issue.

    [code=javascript]var mainPic = document.getEle mentById("place holder");

    var picSrc = mainPic.getAttr ibute("src");

    var container = document.getEle mentById("divCo ntainer");//the...
    See more | Go to post
    Last edited by acoder; Jan 8 '08, 04:39 PM. Reason: Added code tags

    Leave a comment:


  • IE7 javascript using DOM wont output Dynamic Text?

    Thanks to anyone who may be able to steer me in the right direction :)

    Interesting that this works fine in All Browsers BUT Internet Explorer.
    fairly simple goal......

    get a "src" img element attribute and display it (by manipulating DOM elements) on the webpage under a graphic...(for a dynamic label)

    [code=javascript]var mainPic = document.getEle mentById("place holder");
    ...
    See more | Go to post
    Last edited by gits; Jan 8 '08, 07:54 AM. Reason: fix code tags
No activity results to display
Show More
Working...