Changing window height with a function

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

    Changing window height with a function

    Hi,

    I'm struggling with the following :

    I want a function on my form and when I'm calling that function (i.e.
    pressing a button), I want to resize the window (only height) with the
    paramater that I'm supplying to that function. Is it possible ??

    txs in advance,

    Mark
  • Martin Honnen

    #2
    Re: Changing window height with a function



    Mark wrote:[color=blue]
    > Hi,
    >
    > I'm struggling with the following :
    >
    > I want a function on my form and when I'm calling that function (i.e.
    > pressing a button), I want to resize the window (only height) with the
    > paramater that I'm supplying to that function. Is it possible ??
    >[/color]

    <input type="button" value="resize"
    onclick="window .resizeBy(0, 20);">



    --

    Martin Honnen


    Comment

    Working...