Hi, I hope someone can help me. I need to know how to represent an ' in text mode in java
for example:
<SCRIPT LANGUAGE="JavaScript">
<!--
function rotateEvery(sec)
{
var Quotation=new Array()
// QUOTATIONS
Quotation[0] = ' Quotation 1';
Quotation[1] = ' Bla bla bla';
Quotation[3] = ' It's a beutifull day';
now the problem with this is that it does not accept quotation 3 it's, because java thinks I have ended the quotation
How can I make this work.
for example:
<SCRIPT LANGUAGE="JavaScript">
<!--
function rotateEvery(sec)
{
var Quotation=new Array()
// QUOTATIONS
Quotation[0] = ' Quotation 1';
Quotation[1] = ' Bla bla bla';
Quotation[3] = ' It's a beutifull day';
now the problem with this is that it does not accept quotation 3 it's, because java thinks I have ended the quotation
How can I make this work.