How to do event handling in dash plotly

I am developing a project in dash. I need a feature of auto-scrolling, ie, For Simplicity, I have an Input box , so whenever someone hover over that input box window gets automatically scroll down to bottom.
Following is a simple code of Input, I want to Scroll down the window to bottom when someone hover over it.

from dash.dependencies import Input, Output
import dash_html_components as html
import dash_core_components as dcc

app = dash.Dash(__name__)

app.layout = html.Div([
    dcc.Input(
	        id = 'input',
		placeholder='Enter a value...',
		type='text',
		value=''
	),
	html.Br(),
	html.Div(id='output'),
	
])
	
@app.callback(Output('output','children'),
             [Input('input','value')])
def display_output(value):
	return 'You have entered {}'.format(value)


if __name__ == '__main__':
    app.run_server(debug=True)

I am new in dash. I tried Jquery but it is not working
Thank you for Your help.Regards

Hi, you can run your jquery with visdcc.Run_js :slightly_smiling_face: