template.conf.sit_javaee6.mockup.js.reload.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sit-ad Show documentation
Show all versions of sit-ad Show documentation
SIToolkit for Application Develepment
$(function() {
$("body").prepend(""
+ "");
$("#reload").click(function() {
reload();
});
setTimeout("reload();", 2000);
});
function reload() {
if ($("#reload").is(":checked")) {
window.location.reload();
}
}