24 lines
650 B
JavaScript
Raw Normal View History

2024-05-16 21:07:07 +02:00
let script = document.createElement('script');
script.src = "https://code.jquery.com/jquery-3.7.1.min.js";
script.integrity = "sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=";
script.crossOrigin = "anonymous";
document.getElementsByTagName('head')[0].appendChild(script);
2024-05-16 21:17:40 +02:00
let main_panel_buffer = null;
2024-05-16 21:07:07 +02:00
function show(file)
{
2024-05-16 21:17:40 +02:00
if (main_panel_buffer == null) main_panel_buffer = document.getElementById("main_panel").innerHTML;
2024-05-16 21:07:07 +02:00
$.ajax
({
url: "./res/forum/" + file + ".html",
dataType: "html",
success: function(data)
{
2024-05-16 21:17:40 +02:00
$("#main_panel").html(main_panel_buffer + data);
2024-05-16 21:07:07 +02:00
}
});
}