File "language-selector.js"
Path: /IB QUESTIONBANKS/5 Fifth Edition - PAPER/HTML/Biology/Topic 5/js/language-selectorjs
File size: 302 bytes
MIME-type: text/plain
Charset: utf-8
$( document ).ready(function() {
$('#language-selector-block select').change(function(e) {
var language = $(e.target).val();
var deedPath = window.location.pathname.split('/');
deedPath.pop();
deedPath.push('deed.' + language);
window.location.href = deedPath.join('/');
});
});