Results 1 to 3 of 3

Thread: <SCRIPT language=javascript> change

  1. #1
    FSGDAG's Avatar
    FSGDAG is offline Moderator
    Join Date
    May 2007
    Location
    NJ, United States
    Posts
    1,651

    Default <SCRIPT language=javascript> change

    In the header of iDesk the following code comes just after <body>

    Code:
    <SCRIPT language=javascript>
     var hidden_not_working = "{$lang.hidden_not_working_in_browser}";
    {literal}
     function display_form(id) {
      if (document.getElementById) 
       { var elem = document.getElementById(id); } 
      else {
       if (document.all ) { var elem = document.all[id ]; } else { var elem = new Object(); } 
      }
      if (!elem ) { return; }
      if (elem.style ) { elem = elem.style; }
      if (typeof( elem.display ) == 'undefined' && !(window.ScriptEngine && ScriptEngine().indexOf( 'InScript' ) + 1)) { 
       {/literal}window.alert(hidden_not_working);{literal} 
       return; 
      }
      if (elem.display == 'none') {
       elem.display = 'block';
      } else {
       elem.display = 'none';
      }
     }
     
     function change_lang()
     {
      var url = window.location.href;
      var lang_param = 'lang_id='+ document.getElementById('lang_id').value;
      var end_index = url.indexOf("lang_id");
      if(end_index > 0) 
      {
       end_index--;  
       url = url.substr(0,end_index);
      }
      
      if(url.indexOf("?")==-1) url = url+"?";
      else url = url+"&";
      window.location.href = url+lang_param; 
      var f = document.createElement('form'); 
      document.body.appendChild(f); 
      f.method = 'POST'; 
      f.action = url+lang_param; 
      f.submit();
     }
     
    {/literal}
    </SCRIPT>
    Can I change the first line "<SCRIPT language=javascript>" to "<script type="text/javascript">

    ????
    FSGDAG | IndexU Hosting | Owner
    Website | NiceCoder Script Hosting and More! | Web4URL is For Sale!
    Follow Us On Twitter | FaceBook Profile | YouTube Videos

  2. #2
    ddewayanto's Avatar
    ddewayanto is offline Super Moderator
    Join Date
    Apr 2008
    Posts
    20

    Default

    Sure, you can.

  3. #3
    FSGDAG's Avatar
    FSGDAG is offline Moderator
    Join Date
    May 2007
    Location
    NJ, United States
    Posts
    1,651

    Default

    Thanks Dewa!!
    FSGDAG | IndexU Hosting | Owner
    Website | NiceCoder Script Hosting and More! | Web4URL is For Sale!
    Follow Us On Twitter | FaceBook Profile | YouTube Videos

Similar Threads

  1. Language File Problems - Edited but no change
    By webwerx in forum INDEXU DELUXE v1.x
    Replies: 1
    Last Post: 03-12-2009, 02:03 PM
  2. Minimum description with counter (javascript)
    By linksor.com in forum Blocks and Modification
    Replies: 4
    Last Post: 02-10-2009, 09:15 AM
  3. Language change link in header
    By achintha in forum Blocks and Modification
    Replies: 1
    Last Post: 03-17-2008, 12:26 PM
  4. Change language in indexu 5
    By gother in forum v5.x
    Replies: 3
    Last Post: 12-05-2005, 08:01 AM
  5. Replies: 14
    Last Post: 04-18-2004, 03:43 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •