Is there any possibility how to change HTML (.jsp) page without refreshing it?
how to change HTML
without refreshing
Usecase is that user writes something to textarea then hits
You should use the javascript function document.getElementById (DIV THAT YOU WOULD LIKE TO PLACE IN).innerHTML = YOUR_TEXT;.
If you need a response from the server without reloading the page (you will still have to load, but the client will not notice), try using AJAX.