Jump to content

[SOLVED] Progress Bar


The Little Guy

Recommended Posts

I meant the status bar, I did get it to working in FF, but it doesn't work in IE...

 

Here is what I have:

<script type="text/javascript">
onload=function(){
	var aTags = document.getElementsByTagName('a');
	for(var i=0;i<aTags.length;i++){
		aTags[i].setAttribute('onmouseover','window.status=\'\'; return true');
	}
}
</script>

Link to comment
Share on other sites

if you can, just forget the script. "setAttribute" doesn't work with IE. Add the attribute directly to your link.

 

Example:

<a href="pat/to/file.html" onmouseover="window.status=' '; return true;"></a>

(this also should work with javascript turned off)

 

kind regards

Link to comment
Share on other sites

Try:

<script type="text/javascript">
   window.onload = function()
   {
      var links = document.getElementsByTagName("a");

      for(var i = 0; i < links.length; i++)
      {
         links[i].onmouseover = function()
         {
            window.status = "";
         }
      }
   }
</script>

Link to comment
Share on other sites

Try:

<script type="text/javascript">
   window.onload = function()
   {
      var links = document.getElementsByTagName("a");

      for(var i = 0; i < links.length; i++)
      {
         links[i].onmouseover = function()
         {
            window.status = "";
         }
      }
   }
</script>

 

Nope, that doesn't work

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.