$(\"#addSelect\").click(function() { $(\"#optionsForm\").after(\"Hello world.\"); } );
This works.
$(\"#addSelect\").click(
Change all the double quotes for the attributes to single quotes.
$("#addSelect").click(function() { $("#optionsForm").after(" \ \ \ \ Value.. \ \ \ "); } );