You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ComponentFocus.html 377B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Insert title here</title>
  6. <script type="text/javascript">
  7. </script>
  8. </head>
  9. <body>
  10. <button onfocus="console.log('button focus');" onblur="console.log('button blur');">Focus me</button>
  11. <textarea onfocus="console.log('textarea focus');" onblur="console.log('textarea blur');">Focus me too</textarea>
  12. </body>
  13. </html>