Search results

  1. Jecht

    [JavaScript] innerHTML and quotes...

    omg, I have no idea about what's going on... I added the final alert to see how the div#content innerHTML changed its content: function navLinkClick(tgt,mode){ var navLink=getByID('navigator').getElementsByTagName('div'); var navLinkDiv=tgt.id.replace('nav_','')...
  2. Jecht

    onload problem

    Try to setup a timeout. Maybe your script works but the recipient isn't load yet... <body onload="setTimeout(openThis('blog.php?id=1'),100);">
  3. Jecht

    php redirect syntax

    No, you can! For arrays, you can't just write 'em, you need some {} around instead. Honestly i find this way more convenient than PrimaFacie's solution. Just a matter of habits... <?php header("location:http://www.website.com/{$row_rbs_redirect['redirect']}"); exit; ?> PS: works with...
  4. Jecht

    [JavaScript] innerHTML and quotes...

    Picture this: [...] <div id="container">Ooops...! Looks like your browser doesn't support JavaScript</div> [...] <div id="navigator"> <div id="nav_login" onclick="navLinkClick(this)">Login</div> <div id="nav_lostpw" onclick="navLinkClick(this)">Lost PW</div> <div id="nav_register"...
  5. Jecht

    PHP auto-script

    Hi everybody! I'm just arrived... Hope to not post something already asked, but i didn't found similar topics...In the case,just redirect me... I need php to execute some instructions (we can speak of a function, call it "myFunction()" if you want...) at a certain time... I'll try to explain...
Top