This should be very simple but I'm new to javascript and don't know a function that will escape all javascript operations in a script.
I'm writing a script for a signature function in a forum program and any time someone puts a quote or some other javascript parse-able character into it it breaks my program.
Is there a way either to force javascript to recognize it as a string without parsing it as script or, failing that, a function that escapes all scripting within a string that will be dynamic.
I did a search and all I could find were endless webpages on how to escape individual characters with a slash - perhaps my search skills need work.