jQuery UI Tabs – Open on mouseover
Toggle sections open/closed on mouseover with the event option.
The default value for event is “click.”
<!doctype html> <html lang='en'> <head> <meta charset='utf-8'> <title>jQuery UI Tabs - Open on mouseover</title> <link rel='stylesheet' href='//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css'> <script src='//code.jquery.com/jquery-1.10.2.js'></script> <script src='//code.jquery.com/ui/1.10.4/jquery-ui.js'></script> <link rel='stylesheet' href='https://codecrawl.com/code/jqueryui/jqueryui_style.css'> <script> $(function () { $('#tabs').tabs({ event: 'mouseover' }); }); </script> </head> <body> <div id='tabs'> <ul> <li><a href='#tabs-1'>Pitbull</a></li> <li><a href='#tabs-2'>Sean Kingston</a></li> <li><a href='#tabs-3'>Taylor Swift</a></li> </ul> <div id='tabs-1'> <p>Pitbull is a Cuban–American recording artist and Latin Grammy winning rapper from Miami, Florida.</p> </div> <div id='tabs-2'> <p>Sean Kingston pursued a music career and debuted in 2007 with the album Sean Kingston.</p> </div> <div id='tabs-3'> <p>Taylor Swift, raised in Wyomissing, Pennsylvania. She moved to Nashville, Tennessee at the age of fourteen.</p> <p>She is known for her narrative songs about her personal experiences.</p> </div> </div> </body> </html>