Properti HTMLQuoteElement.cite
menetapkan atau mengembalikan atribut CITE elemen Q atau elemen BLOCKQUOTE HTML.
Sintaks:
quoteObj.cite = value
quoteObj.cite
value adalah DOMString yang bisa berisi full URIs (misal: 'http://www.example.com/'), atau relative URIs (misal: 'foo.html' atau '../foo/').
Contoh di bawah ini mengembalikan URL di mana kutipan yang digambarkan elemen Q diambil:
<Q ID="quoteID" CITE="http://www.example.com/myQuote.html">---Loreeem---</Q>
<SCRIPT TYPE="text/javascript">
var quoteObj = document.getElementById("quoteID");
alert(quoteObj.cite); // "http://www.example.com/myQuote.html"
</SCRIPT>
Contoh di bawah ini menetapkan URL di mana kutipan yang digambarkan elemen Q diambil:
<Q ID="quoteID">---Loreeem---</Q>
<SCRIPT TYPE="text/javascript">
var quoteObj = document.getElementById("quoteID");
quoteObj.cite = "http://www.example.com/myQuote.html";
</SCRIPT>
Elemen Q di atas akan menjadi:
<Q ID="quoteID" CITE="http://www.example.com/myQuote.html">---Loreeem---</Q>