7 lines
195 B
JavaScript
7 lines
195 B
JavaScript
|
$(document).ready(function() {
|
||
|
$('#language-chooser').change(function() {
|
||
|
window.location.href = $(this)
|
||
|
.find('option:selected')
|
||
|
.attr('data-url')
|
||
|
});
|
||
|
});
|