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