26 lines
429 B
HTML
26 lines
429 B
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
|
|
|
|
<html>
|
|
<head>
|
|
<title>Untitled</title>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<script language=JavaScript>
|
|
<!--
|
|
|
|
//Disable apperiance of contextmenu
|
|
document.oncontextmenu=new Function("return false");
|
|
|
|
function toPlaylist(target)
|
|
{
|
|
alert(target);
|
|
}
|
|
|
|
// -->
|
|
</script>
|
|
|
|
<a href="" id="123" onContextMenu="toPlaylist('String1234')">xxxxx</a>
|
|
</body>
|
|
</html> |