Search:

Type: Posts; User: Jop

Page 1 of 13 1 2 3 4

Search: Search took 3.42 seconds.

  1. Thread: Very simply maybe

    by Jop
    Replies
    7
    Views
    672

    Re: Very simply maybe

    Oi oi thanks for correcting me CornedBee I should've known better!

    To make up for my mistake, the unobtrusive version:



    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"...
  2. Thread: Very simply maybe

    by Jop
    Replies
    7
    Views
    672

    Re: Very simply maybe

    Something to the extend of:


    function takeme(url){
    if (confirm("Are you sure?")) {
    location.href=url;
    } else
    {
    //clicked cancel - do nothing
    }
  3. Replies
    3
    Views
    620

    Re: Very Odd Form problem

    Can you post the outputted HTML?
  4. Thread: Site Templates

    by Jop
    Replies
    1
    Views
    553

    Re: Site Templates

    Sorry but the free ones are almost always rather ugly:
    http://www.freelayouts.com/templates/display/templates/

    Good ones to learn from HTML & CSS wise:
    http://www.bluerobot.com/web/layouts/
  5. Replies
    3
    Views
    1,646

    Re: relative height problem with HTML

    I'm not much of a table-guy so I can't help you with that. It might be the .bmp though, use png, jpg or gif for images on the web.

    As an alternative I would like to present you CSS background...
  6. Replies
    7
    Views
    720

    Re: Difference I cant see with FF and IE [CSS]

    Firefox actually displays correct behaviour by letting the float bleed out of the container, IE incorrectly extends the container div, although this is often exactely what you want to happen.

    More...
  7. Thread: document.innerHTML

    by Jop
    Replies
    7
    Views
    8,245

    Re: document.innerHTML

    I think what you want is looping through all the tags in a page and extract the ID's from those which have one, and then use that ID to change the innerHTML?
  8. Replies
    11
    Views
    1,328

    Gotta love your christmas avatar lol!

    Gotta love your christmas avatar lol!
  9. Replies
    11
    Views
    1,328

    Those things should be specified in a stylesheet:...

    Those things should be specified in a stylesheet:



    body{
    margin: npx;
    }


    This shorthand for top-margin left-margin etc goes clockwise, so it is:
  10. Replies
    2
    Views
    519

    I tried it with this code, doesn't seem to create...

    I tried it with this code, doesn't seem to create any troubles:



    <div id="left">left
    <table width="90%">
    <tr><td>hello</td></tr>
    </table>
    </div>
  11. Replies
    3
    Views
    667

    I have to leave now, so I did a quick google...

    I have to leave now, so I did a quick google search:...
  12. Replies
    3
    Views
    667

    You can't do this with a normal combobox, you...

    You can't do this with a normal combobox, you could emulate a combobox with a div and css, and hide/show that one with display: none;/display: block;
  13. Thread: height of a div

    by Jop
    Replies
    3
    Views
    622

    Haha i was expecting this question when I made...

    Haha i was expecting this question when I made the 2column layout.

    http://www.alistapart.com/articles/fauxcolumns/

    That fixes it (it's a bit 'dirty' though)
  14. Replies
    2
    Views
    556

    What about this?

    What about this?



    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>...
  15. I don't know if you got it fixed already, but I...

    I don't know if you got it fixed already, but I think (i'm just starting with xslt) that this is the right way to do it:

    xsl:


    <?xml version="1.0" encoding="UTF-8"?>
    <xsl:stylesheet...
  16. Replies
    10
    Views
    733

    It's a faulty implementation on IE's side: ...

    It's a faulty implementation on IE's side:

    http://www.shaftek.org/blog/archives/000153.html
  17. Replies
    6
    Views
    613

    There are :) if{ etc. } Also, in Flash MX...

    There are :)
    if{
    etc.
    }

    Also, in Flash MX (2004) the actionscripting is much more powerfull (autocomplete etc).
  18. Replies
    2
    Views
    529

    I'm not really sure since I never use Iframes,...

    I'm not really sure since I never use Iframes, but try using something like

    parent.framename.src = "bla.html"
  19. I'm sorry but I don't think that inputs support...

    I'm sorry but I don't think that inputs support HTML, it's just plain text.
  20. Replies
    6
    Views
    613

    Changing the value of MC1._y will do the trick!

    Changing the value of MC1._y will do the trick!
  21. Replies
    3
    Views
    520

    So what about the margins/padding of s_text and...

    So what about the margins/padding of s_text and the elements surrounding it?
  22. I'm in hurry so a quickie: You could go...

    I'm in hurry so a quickie:

    You could go through each td by first getting the table using an ID (getElementByID) and then look for .bgColor == "yellow"

    but it would be easier to do it with...
  23. Replies
    3
    Views
    462

    Well if the company can afford it, defenitely go...

    Well if the company can afford it, defenitely go for a newer version (preferebly the latest). This speeds up your work, saving them money. It allows you to program more OO like, and the structure of...
  24. Replies
    3
    Views
    594

    Div is generally a block element, so you might...

    Div is generally a block element, so you might want to set it display: block;
  25. Replies
    6
    Views
    591

    Why don't you just test for null? if...

    Why don't you just test for null?



    if (p1.value != null)
    // Grab value
  26. Replies
    34
    Views
    1,208

    So Wossname, what was it like, what places have...

    So Wossname, what was it like, what places have you visited and what did you throw up upon?
  27. Replies
    1
    Views
    487

    Well I don't see a good reason for using an...

    Well I don't see a good reason for using an Iframe, if your host supports PHP you want to include() some files so that you have that seperated.
  28. Replies
    6
    Views
    930

    You can redirect by setting the location.href...

    You can redirect by setting the location.href property.
  29. Replies
    24
    Views
    1,228

    Yes, follow the rules as specified by the w3c...

    Yes, follow the rules as specified by the w3c specs, and validate your documents to see if it compies.
  30. Replies
    24
    Views
    1,228

    I suggest not using the tantek hack, use...

    I suggest not using the tantek hack, use conditional statements to specify special widths for IE 5 (IE 6 renders boxes correct, as long as it's not in quirksmode - so a correct doctype as the first...
  31. Replies
    24
    Views
    1,228

    Because that's how it's specified in the specs,...

    Because that's how it's specified in the specs, padding is applied inside the box, margins are applied outside of it. The width you specify is the space you have for the content, not how much space...
  32. Replies
    9
    Views
    1,371

    It depends on wether you want it left or right,...

    It depends on wether you want it left or right, you might want to float them. If you want them to span over the whole width of the menu, you should delete the #mnu a{width: 60px} part.
  33. Replies
    9
    Views
    1,371

    Em allright, what's the code for that list?

    Em allright, what's the code for that list?
  34. Replies
    9
    Views
    1,371

    Same for me here, code looks alright except for:...

    Same for me here, code looks alright except for:



    <ul class='subs'>
    <li><a href='./ack.asp' title='Shouts To'>Shouts To</a></li>
    <li><a href='./feedback.asp'...
  35. Replies
    8
    Views
    460

    If you have photoshop you might want to hit CTRL...

    If you have photoshop you might want to hit CTRL + U and click colorize and slide around abit. This will change the overal HUE settings of your image.
  36. Replies
    4
    Views
    581

    What do you want me to do with the code? For...

    What do you want me to do with the code?

    For the link lists:
    http://www.alistapart.com/articles/taminglists/

    For me, the code shows about the same thing with the links in IE and FF, the...
  37. Replies
    4
    Views
    581

    Here's a simplified version: css:

    Here's a simplified version:

    css:


    <style type="text/css">
    body{
    margin: 0;
    padding: 0;
    }
  38. Replies
    2
    Views
    636

    This works for me: ...

    This works for me:


    <style type="text/css">
    a {
    width: 90%;
    display: block;
    }
    </style>
  39. Thread: HTML block

    by Jop
    Replies
    4
    Views
    537

    You can use php's htmlentities...

    You can use php's htmlentities
  40. Thread: Very Easy Html

    by Jop
    Replies
    5
    Views
    569

    Well it depends, the readonly attribute allows...

    Well it depends, the readonly attribute allows the user to focus the textbox (also with tab), which might confuse some users. So if you're disabling a certain textbox until another one is filled out...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width