JoolsCaesar
JoolsCaesar
If anyone is desperate for a central workaround, you can use the following to ignore calls to `focus()` on hidden elements ``` var origFocus = $.fn.focus; $.fn.focus = function(){ if(arguments.length...
Does the API documentation need updating for that? I can't see any mention of it in the docs for focus or the deprecated functions page, though funnily enough, it does...
> I maintain an ESLint plugin for jQuery Nice, I'll check that out. Thanks!
I have a hacky workaround for this if any one is interested. It seems to be rendering an element based on its attributes but not its properties. My workaround is...
@nattu1989, there's a working example in the codepen ``` else if(node.tagName==="SELECT" && node.selectedIdx!=-1){ var options = node.childNodes; // Assumption! var optionCount = 0; var selectedIdx = node.selectedIndex; for(var i=0; i
The bug is in selenium. The drivers for Chrome and Edge Dev (chromium), since version 75, both comply with the w3c. Selenium need to update their javadocs to say that...
Any movement on this? It's still causing "stack limit exceeded" errors in the latest versions of jquery e.g. from 3.6.0: ``` // If seed is empty or no tokens remain,...