hi, i can't seem to be able to escape my single quote properly... is it
even possible in javascript?
this is a portion of my code..
var DLEWIS="Pastor Lewis";
.... Sermon is a yser-defined class ..
var en_20031102=new Sermon("11/02",DLEWIS,"T he Lord\'s Supper: The Art Of
Struggle",
"<a
href='http://www.biblegatewa y.com/cgi-bin/bible?language= english&passage =Lam
entations+3%3A1 9-27&version=NIV ' target='_blank' >Lamentations<b r />
3:19-27</a>",
"sermon-20031102-en.m3u","-");
.... and then in the printing function i write the following code:
document.write( "<a href='"+sermonA rray[i].notes+"'><img src='ppt.gif'
alt='");
document.write( sermonArray[i].title+" - "+sermonArr ay[i].speaker+" ||
"+sermonArr ay[i].date+"' /></a>");
for a sample of how it looks, you can go check out:
is anyone able to give me advice? thanks.,.
even possible in javascript?
this is a portion of my code..
var DLEWIS="Pastor Lewis";
.... Sermon is a yser-defined class ..
var en_20031102=new Sermon("11/02",DLEWIS,"T he Lord\'s Supper: The Art Of
Struggle",
"<a
href='http://www.biblegatewa y.com/cgi-bin/bible?language= english&passage =Lam
entations+3%3A1 9-27&version=NIV ' target='_blank' >Lamentations<b r />
3:19-27</a>",
"sermon-20031102-en.m3u","-");
.... and then in the printing function i write the following code:
document.write( "<a href='"+sermonA rray[i].notes+"'><img src='ppt.gif'
alt='");
document.write( sermonArray[i].title+" - "+sermonArr ay[i].speaker+" ||
"+sermonArr ay[i].date+"' /></a>");
for a sample of how it looks, you can go check out:
is anyone able to give me advice? thanks.,.
Comment