define table width

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

    #1

    define table width

    I've a site in wich I want the "footer" to appear after the content if this
    is further than the explorer window height or at the bottom of the explorer
    window if the table is little:

    let's take an example:

    window height (IE, Netscape...) 300px
    table height: 150: the footer should be at window.height - footer.height
    table height 380: the footer should be at table.height

    How can I do this in javascript and also set it in order to be placed at the
    end of the page if the browser size changes ???

    Thanks in advance


  • Mick White

    #2
    Re: define table width

    Bob Bedford wrote:
    [color=blue]
    > I've a site in wich I want the "footer" to appear after the content if this
    > is further than the explorer window height or at the bottom of the explorer
    > window if the table is little:
    >
    > let's take an example:
    >
    > window height (IE, Netscape...) 300px
    > table height: 150: the footer should be at window.height - footer.height
    > table height 380: the footer should be at table.height
    >
    > How can I do this in javascript and also set it in order to be placed at the
    > end of the page if the browser size changes ???
    >
    > Thanks in advance
    >
    >[/color]
    Table height is a non-starter, there is no such thing.
    Why not

    </table>
    <-- footer content here -->

    ?

    Mick

    Comment

    Working...