0
Welcome Guest! Login
0 items Join Now

ROCKETTHEME IS CLOSING ON JUNE 30, 2025. As a thank-you to our community, enjoy 50% off all themes with the promo code THANKYOU before we shut down. Read our Farewell Blog Post for more details.

Custom status messege

  • Custom status messege

    Posted 16 years 6 months ago
    • Hi,

      Does anyone know how to change what appears in the status bar in the bottom left corner of browser? I tried using a normal javasript but it didn't work with Joomla. Your help would be greatly appreciated!
    • prim's Avatar
    • prim
    • Preeminent Rocketeer
    • Posts: 17290
    • Thanks: 217

    Re: Custom status messege

    Posted 16 years 6 months ago
    • It should work. Did you try with code clean-up turned off or disabled the editor alltogether? :)
    • Please reply with a direct link to the issue & create a new thread for each new issue.

      A template is only as good as the content that goes into it ;) - DanG
  • Re: Custom status messege

    Posted 16 years 6 months ago
    • Hi prim,

      This is the code I used. I inserted it in my index.php file. your probably going to tell me i done it all wrong so can you post the code that would work correctly?

      <script language="Javascript">
      <!--
      //This credit line must stay intact
      //Status Scrolling script
      //For this script, visit java-scripts.net

      myMsg = "I hope you enjoy visiting Java-scripts.net! "

      i=0

      function scrollMsg() {
      frontPart = myMsg.substring(i,myMsg.length)
      backPart = myMsg.substring(0,i)
      window.status = frontPart + backPart

      if (i < myMsg.length) {
      i++
      }
      else {
      i = 0
      }

      setTimeout("scrollMsg()",50)

      }

      window.onload=scrollMsg
      //-->
      </script>

Time to create page: 0.094 seconds