'cite' Example : Cite « HTML « JavaScript DHTML
- JavaScript DHTML
- HTML
- Cite
'cite' Example
<html>
<body>
<q id="myQuotation"
cite="http://www.java2s.com/">
java2s.com
</q>
<br>
<input type="button" value="Value of Cite Property" onclick="alert(myQuotation.cite);">
</body>
</html>
Related examples in the same category