Recent content by Nummi_G4

  1. N

    IE produces blank pages; IE bug or PHP code error?

    I've seen certain elements not appearing in IE (due to floats with CSS) but never blank pages. Are you using floats anywhere?
  2. N

    Submitting XHTML forms

    <form method="post" action="doStuff.php">
  3. N

    iWeb part of iLife '06?

    Heh. Don't count on that. Have you seen the HTML that Pages spews out? :)
  4. N

    100% Height???

    Table are evil for layout. Don't forget about semantics. Tables have a purpose... not for layout.
  5. N

    Website works on one server, but not another

    JavaScript can't be the issue here. Are you using some kind of server side script to serve the page? (PHP, ASP, etc).
  6. N

    Web Design

    IE Mac is pretty much dead. As far as I know, only IE PC supports Microsoft specific filters.
  7. N

    i hate IE

    I'm pretty sure that should work. I'm not an expert with JavaScript so I've had problems like that before. I had code like that sitting outside of a function, so it would not work. To fix it, I had to do this: window.onload = setUp function setUp() {...
  8. N

    safari vs. firefox on javascript window.event

    tench, my understanding is that window.event is an Internet Explorer thing. Also, isn't there an issue with alt click, shift clicks, ctrl clicks, etc being used for certain functions like opening the clicked link in a new tab? The W3C standard for getting access to an event is 'e'. The...
  9. N

    Post your desktop!

    Hey RacerX. Good to see that your 7500 is still alive and kicking. Rhapsody is still running smooth on mine. :)
  10. N

    What Song Are You Playing Now?

    Apply Some Pressure - Maximo Park
  11. N

    meta tags and search engines

    Major search engines like Google don't use meta tags much anymore. Just make sure all your keywords and phrases are used frequently are placed in the correct spots. Put the most important words in the title tags if possible. You have a really nice looking site :) You might want to drop the...
  12. N

    JavaScript return false

    To be honest, I'm not looking to support older browsers like Netscape4. Since it can't read my CSS (which is ALSO NOT in the HTML), I will just let my site break down gracefully (this will happen since I planned ahead and assembled it with that in mind). The HTML markup should not be full of...
  13. N

    JavaScript return false

    Hey guys, I need some JavaScript help. In this JavaScript application I was stopping the browser from following the href like so (the "return false;" is what stops the link): <a href="http://www.apple.com" id="appleLink" onclick="someFunction(); return false;">Random Test</a> Since...
  14. N

    Two questions: CSS layout and javascript

    Are you using the float attribute or positioning for your layout?
  15. N

    XMLHttpRequest and Dashboard

    Is your *.plist file set up properly? I was having trouble with XMLHttpRequest until I compaired my plist with an Apple plist.
Back
Top