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.
Share Improve this question edited May 24, 2016 at 14:26 madhan kumar asked May 24, 2016 at 13:22 madhan kumarmadhan kumar 1,6082 gold badges27 silver badges38 bronze badges 8- why do you want to do this? are you unable to edit the html to remove the files you don't want? – Cruiser Commented May 24, 2016 at 13:27
- Actually, I am trying to change css file dynamically. – madhan kumar Commented May 24, 2016 at 13:28
- 2 @madhankumar you cannot do that. But you can always change the CSS individual properties dynamically – Ahs N Commented May 24, 2016 at 13:31
- 1 You 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 Commented May 24, 2016 at 13:36
- 2 see this answer: stackoverflow./questions/25827756/… – Cruiser Commented May 24, 2016 at 13:37
1 Answer
Reset to default 5Is 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;
}
I think you could adapt the code for your site
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745657186a4638612.html
评论列表(0条)