Summarization / static /hellopagejs.js
ikraamkb's picture
Update static/hellopagejs.js
1d21eba verified
raw
history blame contribute delete
461 Bytes
document.addEventListener('DOMContentLoaded', function () {
const SC = document.querySelector('.SC');
const QA = document.querySelector('.QA');
console.log("hello")
SC.addEventListener('click', function () {
window.location.href = '/Summarization/'; // Redirect to Summarization app
});
QA.addEventListener('click', function () {
window.location.href = '/qtAnswering/'; // Redirect to Question Answering app
});
});