File size: 461 Bytes
5f0e25a
 
 
4e47880
5f0e25a
1d21eba
5f0e25a
 
 
146ed07
5f0e25a
 
1
2
3
4
5
6
7
8
9
10
11
12
13
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
    });
});