I am very new to javascript. I am creating a multilingual website. It contains rtl and ltr languages. I have two css for those to languages. When user change his language I want to load respective css file. Is it possible in this way ? If not suggest any alternative way.
I am very new to javascript. I am creating a multilingual website. It contains rtl and ltr languages. I have two css for those to languages. When user change his language I want to load respective css file. Is it possible in this way ? If not suggest any alternative way.
javascript
php
html
Share
Improve this question
edited May 24, 2016 at 14:26madhan kumar
asked May 24, 2016 at 13:22
madhan kumarmadhan kumar1,60822 gold badges2727 silver badges3838 bronze badges8
why do you want to do this? are you unable to edit the html to remove the files you don't want?
– Cruiser
CommentedMay 24, 2016 at 13:27
Actually, I am trying to change css file dynamically.
– madhan kumar
CommentedMay 24, 2016 at 13:28
2@madhankumar you cannot do that. But you can always change the CSS individual properties dynamically
– Ahs N
CommentedMay 24, 2016 at 13:31
1You can't disable css files with javascript. The proper way of doing it would be to add/remove css classes with javascript and/or use css media queries to display certain rules when you want to. Google CSS Media Queries and Changing CSS Class with javascript/jquery.
– Dan Weber
CommentedMay 24, 2016 at 13:36
2see this answer: stackoverflow./questions/25827756/…
– Cruiser
CommentedMay 24, 2016 at 13:37
|
Show 3 more ments
1 Answer
1
Reset to default
5
Is posible enable and disable css stylesheet with javascript. A example: http://plnkr.co/0exLXB
function del_style() {
document.getElementById("styles").disabled=true;
}
function add_style() {
document.getElementById("styles").disabled=false;
}