I have a silly question but important for me. How to override ' in document.write in javascript? For example:
document.write('Sent's Lois');
You see the problem is part Sent's -'s- because javasript considere it as the end Lois'... It is a problem for me I was trying:
document.write('Lois');
document.write('s Lois');
But that's not it because you get document.write('Sent s Lois'); and you missing Sent's again..... Any help please......