Some of website developers are need to track on visitor’s activity during browsing their website. Even would like to track when the visitor exit or quit their website.
Below is a simple example on how to using a javascript command to track on visitor exit/close page action.
Example:
<script language=”javascript”>
function trackUser(){
//doing something here for your tracking.
}
window.onbeforeunload = function(){ trackUser(); }
</script>
discuss this topic to forum
