Question

Here is my function:

var boxName = document.getElementById('searchBox').value;

How can I put the value of boxName inside the scriplet like this?

<%BoxList.getInstance().getBoxListNames().contains(boxName);%>
Was it helpful?

Solution

--Not Possible

You might misunderstand that jsp and javascript existed on same document.Yes but JSP part compiles on server side itself comes to client.

Java script Plays on client side and JSP plays on server side.

What you need is you have to make a server request.And send that string a query parameter.

And please prefer to read How to avoid Java code in JSP files?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top