[php][/php]
I am trying to use this function to emulate what i see here, http://www.thegrocerygirls.com/snacks
If you goto the site and add an item to the cart, and then go back and add another item to the cart while typing in special instructinos, you see how it displays, im trying to do the same thing. Im thinking this function with this
$.valHooks.textarea = {
get: function( elem ) {
return elem.value.replace( /\r?\n/g, "\r\n" );
}
};