Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created March 20, 2017 16:56
Show Gist options
  • Save Farmatique/8756dea8b70f0e9a794b3fb5ae14dd04 to your computer and use it in GitHub Desktop.
Save Farmatique/8756dea8b70f0e9a794b3fb5ae14dd04 to your computer and use it in GitHub Desktop.
Hide block when click outside of it
$(document).mouseup(function (e)
{
var container = $("YOUR CONTAINER SELECTOR");
if (!container.is(e.target) // if the target of the click isn't the container...
&& container.has(e.target).length === 0) // ... nor a descendant of the container
{
container.hide();
}
});
@moontaers
Copy link

i need code of pickup location in c# using asp.net web forms
for my project easy taxi

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment