$(\"#addSelect\").click(function() { $(\"#optionsForm\").after(\"Hello world.\"); } );
This works.
$(\"#addSelect\").click(
I prefer to use something like this:
$('' + inputNotes.val() + ' ' + todayStamp + ' ')
I feel like it's clean the + concatenation allows you to know we're working with the same black and it gives you the flexibility of adding variables.