`function filePath(e){
const filePath=$(e).text();
$.ajax({
url:"boardList?reqPage=1",
data:{filePath:filePath},
success:function(){
window.close();
}
});
}`
this function is that if i click filePath(a tag), then sending filePath to other jsp.
i sent data directly like this and then how can i receive the data at boardList?reqPage=1??
simply if i click click, it is entered in file path
when i get the data, the page shouldnt refresh