Jump to content

Div width won't change from JS


EchoFool

Recommended Posts

Hey

 

 

I have a basic Js script and some HTML that sets the width of a div. But its not working it keeps making it 100% wide all the time.

 

I can't see any issue with it personally, but was wondering.... the script is called from an AJAX request... could that be causing some issue?

 

 

This is my code:

 

<head>
<script type="text/javascript">
    function percentage(){
      var perc = Math.round((500 / 2500) * 100);
      
       if(perc > 100)
        {perc = 100;}
        else if(perc < 0 )
        {perc = 0;}


        d = document.getElementById('health');
        d.style.width = perc + "%";
      
   
    };
   onload = percentage;
</script>
</head>
<body>
   <div style="width:250px;background-color:red;min-height:5px;">
   <div id="health" style="background-color:green;min-height:5px;">
   < / div > //dunno why but if i dont add spaces in this post it removes the close divs 
< / div >
</body>

 

 

Any ideas?

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.