I have a few JavaScript functions that are meant to grab files for a select tag, and update them when a certain option is selected.
The files are still being retrieved by JavaScript, but I’ve FTP’d new options and the old ones are only showing up.
$(document).ready(function() {
$('#schedGrab').change(function() {
var schedGrab = $(this).find('option:selected').text();
if (schedGrab == "English") {
$("#schedPost").load('../start/classes.html #english');
$("#specPost").load('../start/specs.html #english');
});
change
$("#schedPost").load('../start/classes.html#english');to
$("#schedPost").load('../start/classes.html?'+ new Date().getTime() +'#english');(I think that the # is useless, but it not your problem right now).