You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
616 B
JavaScript

3 years ago
///////////////////////////////
// all jQuery stuff here
$(document).ready(function() {
$("#trigger").click(function() {
$("#demo").html("Hello, World!");
});
$(document).on('change', 'select', function(){
alert($(this).find('option:selected').text());
});
});
//go back+go forward buttons
function goBack() {
window.history.back();
}
function goForward() {
window.history.go(1);
}
//to switch divs inside the container div
function show(param_div_id) {
document.getElementById("container").innerHTML = document.getElementById(param_div_id).innerHTML;
}