event codes
・about (for "about us" click event)
url: http://www.example.com/some_page
--------------------------
<script>
Vpadn('element_interact', {
'name': 'web',
'action': 'click',
'value': 'ev_0_about'
});
</script>
--------------------------
This is an example page, the original content is as below:
<!DOCTYPE html>
<html>
<head>
...
</head>
<body>
<!-- part of your html content here -->
<!-- an example button -->
<a href="http://www.vpon.com/">about us</a>
<!-- part of your html content here -->
</body>
</html>
Modified example page:
<!DOCTYPE html>
<html>
<head>
...
<!-- base code content here -->
</head>
<body>
<!-- part of your html content here -->
<!-- an example button -->
<a onclick="onAboutClick();">about us</a>
<script>
function onAboutClick(){
//vpon event code
Vpadn('element_interact', {
'name': 'web',
'action': 'click',
'value': 'ev_0_about'
});
//go to link page after a short timeout
setTimeout( function(){
location.href = "http://www.vpon.com/";
}, 700);
}
</script>
<!-- part of your html content here -->
</body>
</html>