Web Analytics Made Easy -
StatCounter Can this be altered? - CodingForum

Announcement

Collapse
No announcement yet.

Can this be altered?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Can this be altered?

    function openIT(value,value1)
    {
    var file='production/index.php?planet='+value+'&type='+value1;
    window.open(file,"","fullscreen",scrollbars=0);
    }

    I got that script and it opens a window, but what I wanna do is load a document in to an already existing frame can this be done?

  • #2
    window.location = "url.htm";
    bluemood | devedge | devmo | MS Dev Library | WebMonkey | the Guide

    i am a loser geek, crazy with an evil streak,
    yes i do believe there is a violent thing inside of me.

    Comment


    • #3
      function openIT(value,value1)
      {
      var file='production/index.php?planet='+value+'&type='+value1;
      window.open(file,"insert framename here");
      }

      Comment


      • #4
        TY very tamienne works perfect


        Comment

        Working...
        X