View Single Post
tenbellys
Guest
 
Posts: n/a

have you checked it in firefox javascript debugger? that thing is like a god to me.

but here is how I would do it.

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 TRANSITIONAL//EN">
<html>

	<head>
		<title></title>
	</head>
	<script type="text/javascript">
	
	function send(){
		alert("hello!");
	}
	</script>
	<body>
		<a href="javascript:void(0);" onclick="send();return false">hello</a>

	</body>
</html>
and it works in safari.
QUOTE Thanks