Cursor Blink On fixed header On Scroll

Input Cursor Blink In Internet Explorer

Input Cursor Blink On fixed header On Scroll In Internet Explorer

Solution <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js”></script> <script> $(window).scroll(function () { $(“input”).blur(); }); </script>   Example <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8″> <meta name=”viewport” content=”width=device-width, initial-scale=1.0″> <meta http-equiv=”X-UA-Compatible” content=”ie=edge”> <title>Document</title> </head> <body> <style> header { position: fixed; top:…