Mega Menu auto pops on every page refresh --

1 reply · opened Feb 27, 2020

ZZADIPFeb 27, 2020

Hi,

I am using mega menu for my site but for some reason it just pops open and closes without me hovering or clicking on the navigation items. This happens with every refresh. I am attaching a video of the issue I am facing.

Please help on this at the earliest.

https://drive.google.com/open?id=1JyFyLF-A67DbRLrAAU-zUa2UmAe0CpRn

Regards,
AS

SSemicolon WebSTAFFFeb 28, 2020

Hello,

Apologies about the Inconveniences caused!

We have checked this out and this appears to be an issue only on Google Chrome. The Blinking of the Menu is due to the Form which gets Auto-Filled by Google and then focused. To fix this, simply change the type="password" to type="type_password" and then use the following JS Code at the bottom of the Page:


	jQuery(window).on('load', function(){
		$('input').each( function(){
			if( $(this).attr('type') == 'type_password' ) {
				$(this).attr('type', 'password');
			}
		});
	});

This appears to be working fine. It is not a very elegant solution but this is a Bug from the Browser.

Hope this Helps!

Let us know if we can help you with anything else or if you find any further issues.

Have the same question, or something new?

Sign in to the Canvas dashboard to reply or open your own topic. Canvas owners get direct help from the SemiColonWeb team.

Reply on the dashboard