Files
2025-09-24 13:26:28 +02:00

5 lines
136 B
JavaScript

$(function() {
$('.versions').change(function (e) {
location.href = $(this).find('option:selected').data('url');
});
});