javascript - Different image source for different locales -


is possible have different image source different browser locales? images stored localy. 1 english , german. so, if start browser in german language must shown german image. , same english.

you can detect browser langauge via :

var language = window.navigator.userlanguage || window.navigator.language; alert(language); 

now , can check value of language can indicates read images from.

another option prefix images language e.g. en-usmypic.jpg , , , via js , read image.


Comments