Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to set "div" alignment to center using javascript. The reason using javascript is not working of "margin:auto" in IE.

I have coded :

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>
All Time Set Window
</title>
<script language="JavaScript" type="text/javascript">
$(document).ready(
    var winSize = $(window).width();
    var margin = winSize % 10;
    function setMargin(){
        $('#main').css({'margin-left':margin,'margin-right':margin});  
    }
)
</script>
</head>
<body>
<div id="main" align="center" style="width:1000px; height:100%; text-align:center; border: #000 solid 1px; margin:auto;">
    <div id="inner1" style="width:100%; height:20%; background-color:#F8E0E0; float:top;  border: #000 solid 1px;">
        <div id="inner11" align="center">This is Header</div>
    </div>
    <div id="inner2" style="width:100%; height:60%; background-color:#F5F6CE; border: #000 solid 1px;">
        <div id="inner21" align="center" style="width:70%; background-color:#E3F6CE; float:left;">This is Left Frame</div>
        <div id="inner22" align="center" style="width:30%; background-color:#E0E0F8; float:right;">This is Right Frame</div>
    </div>
    <div id="inner3" style="width:100%; height:20%; float:bottom; background-color:#F8E0E0; border: #000 solid 1px;">
        <div id="inner23" align="center">This is Footer</div>
    </div>
</div>
</body>
</html>

But, still javascript code is not working properly. What can be the solution ?

share|improve this question
you have already set align="center", what do you exactly want to implement? – Ankit Jaiswal Aug 20 '10 at 7:58
where did u link the jQuery.js. I suggest you use firebug addons.mozilla.org/en-US/firefox/addon/1843 – Avinash 웃 Aug 20 '10 at 8:40
You don't need JS, you can use css : #main { margin: 0 auto; }. – OneOfOne Nov 9 '12 at 2:46

1 Answer

up vote 0 down vote accepted

Use this code

$(document).read( function($){  ... } )

instead of your code:

$(document).ready( ... )

Or even shorter:

$(function(){ ... })
share|improve this answer
But, still doesn't working !!! – user284291 Aug 20 '10 at 8:23
The problem is in IE not in Mozilla. – user284291 Aug 20 '10 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.