5 lines
136 B
JavaScript
5 lines
136 B
JavaScript
$(function() {
|
|
$('.versions').change(function (e) {
|
|
location.href = $(this).find('option:selected').data('url');
|
|
});
|
|
}); |