onLoad

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

    onLoad

    Hi all

    I have this onLoad event it is working fine but I'm just queries is
    this the right ware to do it?

    <body
    onLoad="st_setk opcheta1(10,10, 10,'stmenubotto m','stmenu1','s tsubmenu1'
    ,'stmenu2','sts ubmenu2','image s/crt/images/cr_04.jpg' &&
    setDefaults())" >

    Thanks


  • steve

    #2
    Re: onLoad

    > Hi all[color=blue]
    >
    > I have this onLoad event it is working fine but I'm just queries is
    > this the right ware to do it?
    >
    > <body
    >[/color]
    onLoad="st_setk opcheta1(10,10, 10,'stmenubotto m','stmenu1','s tsubmenu1'[color=blue]
    > ,'stmenu2','sts ubmenu2','image s/crt/images/cr_04.jpg' &&
    > setDefaults())" >
    >
    > Thanks[/color]

    Sorry I lie
    does not work correct after I upload it to the web server

    How can I have two or more onLoad event
    for example
    this one
    <body
    onLoad="st_setk opcheta1(10,10, 10,'stmenubotto m','stmenu1','s tsubmenu1'
    ,'stmenu2','sts ubmenu2','image s/crt/images/cr_04.jpg')">

    and this one
    <body onLoad="setDefa ults()">

    Thanks


    Comment

    • Grant Wagner

      #3
      Re: onLoad

      steve wrote:
      [color=blue][color=green]
      > > Hi all
      > >
      > > I have this onLoad event it is working fine but I'm just queries is
      > > this the right ware to do it?
      > >
      > > <body
      > >[/color]
      > onLoad="st_setk opcheta1(10,10, 10,'stmenubotto m','stmenu1','s tsubmenu1'[color=green]
      > > ,'stmenu2','sts ubmenu2','image s/crt/images/cr_04.jpg' &&
      > > setDefaults())" >
      > >
      > > Thanks[/color]
      >
      > Sorry I lie
      > does not work correct after I upload it to the web server
      >
      > How can I have two or more onLoad event
      > for example
      > this one
      > <body
      > onLoad="st_setk opcheta1(10,10, 10,'stmenubotto m','stmenu1','s tsubmenu1'
      > ,'stmenu2','sts ubmenu2','image s/crt/images/cr_04.jpg')">
      >
      > and this one
      > <body onLoad="setDefa ults()">
      >
      > Thanks[/color]

      <body onload="functio n1();function2( );">

      or

      <body onload="init(); ">
      <script type="text/javascript">
      function init() {
      function1();
      function2();
      }
      </script>

      --
      | Grant Wagner <gwagner@agrico reunited.com>

      * Client-side Javascript and Netscape 4 DOM Reference available at:
      *


      * Internet Explorer DOM Reference available at:
      *
      Find official documentation, practical know-how, and expert guidance for builders working and troubleshooting in Microsoft products.


      * Netscape 6/7 DOM Reference available at:
      * http://www.mozilla.org/docs/dom/domref/
      * Tips for upgrading JavaScript for Netscape 7 / Mozilla
      * http://www.mozilla.org/docs/web-deve...upgrade_2.html


      Comment

      • steve

        #4
        Re: onLoad

        Thanks


        Comment

        Working...