Click here to Skip to main content
15,868,016 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
I want to change a ltr theme to rtl.
I don't want to manipulation css of theme.
I want to add a code of jquery or javascript to it for do this operation(ltr to rtl) in client
Posted
Updated 26-Dec-14 10:14am
v2

Refer - http://www.w3schools.com/cssref/tryit.asp?filename=trycss_js_direction[^]
JavaScript
function myFunction() {
    document.getElementById("myDIV").style.direction = "rtl";
}
 
Share this answer
 
v2
I used grunt-flipcss
 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900