I have two html elements:
<input id="searchInput">
<div id="searchText"></div>
I'm using d3 to add a listener in a script.
d3.select("#searchInput").on("keyup",getSearchText);
I need a function that prints a value of input to a div
function getSearchText(value) {
d3.select("#searchResults").html(value.toString());
}
But I don't know how to pass input value parameter to a listener function.