I want to change HTML dir attibute once the page loads,How can I do that. Do i need to use the .ready() function?
Currently it looks like
jQuery("html[lang=ar]").attr("dir", "rtl")
.find("body").addClass("right-to-left");
How can I wrote it in a script ,Do i need to write in .ready() function or .load()
The code appears like this
This is my css
body.right-to-left li {
float:right;
direction: rtl;
}
htmltag actually has alang=arattribute. Of course you'd need.readyor.loadto attach the class to thebody. But what exactly is your problem? Is the attribute not changed? Is the class not added? Do you get an error? Where is your code located in the document? The more information you provide, the easier it is for us to help you. – Felix Kling Dec 25 '12 at 12:55$(function () {})is called after the document has loaded. – nameIsNull Dec 25 '12 at 12:55