how to hit a webservice while closing the browser window or tab?

138 Views Asked by At

I am facing a problem i need to hit the webservice before closing the tab. i am using this

 <script>
function myFunction() {
    return "Write something clever here...";
}
</script>   

 <body  onbeforeunload="return myFunction()">

i don't know where i hit the webservice while closing the tab its show the prompt where show stay on page and leave the page. So i implemented the condition if leave then hit the webservice otherwise its remain same

0

There are 0 best solutions below