Jquery – LoadingOverlay iterate many overlays and hide programmatically
I'm working with this libraray https://gasparesganga.com/labs/jquery-loading-overlay/ Example: To show an overlay for an element: $("body").LoadingOverlay("show", {}); Example: To hide an overlay for an element: $("body").LoadingOverlay("hide", true); I can call hide and show explicitly and it will work as expected. I…