5 lines
154 B
JavaScript
5 lines
154 B
JavaScript
$(document).ready(function(){
|
|
$("#demosMenu").change(function(){
|
|
window.location.href = $(this).find("option:selected").attr("id") + '.html';
|
|
});
|
|
}); |