15 lines
422 B
HTML
15 lines
422 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>Test</title>
|
|
<script type="text/javascript" src="scriptapi.js"></script>
|
|
<script type="text/javascript">
|
|
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<p><a id="foo" onclick="javascript:alert('Success!');">This will be clicked by the script</a></p>
|
|
<p><a id="bar" onclick="javascript:script_fire_event(script_find_element('foo'), 'click');">Test the script</a></p>
|
|
</body>
|
|
</html>
|