8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
|
$(document).ready(function() {
|
||
|
$("#locales").change(function () {
|
||
|
var selectedOption = $('#locales').val();
|
||
|
if (selectedOption != ''){
|
||
|
window.location.replace('international?lang=' + selectedOption);
|
||
|
}
|
||
|
});
|
||
|
});
|