Hi Matt, bad idea, you should rely on server script to clear user input, not in client side. btw, the stripTag method does what you need. To integrate it in the AJAX.inPlaceEditor, just use the "callback" parameter on its creation. As doc says: << A function that will get executed just before the request is sent to the server, should return the parameters to be sent in the URL. Will get two parameters, the entire form and the value of the text control. >>
-- david On 1 juil, 23:12, MANismyname <[email protected]> wrote: > What is the best way of going about invoking the > > .stripScripts().stripTags(); > > string from prototype before the information is passed from the > Scriptaculous InPlaceEditor to the server to be processed? > > <script type="text/javascript"> > var test = new Ajax.InPlaceEditor($('test'),'_proc.jsp',{ > rows:10, cols:40, > externalControl: > 'test_control', externalControlOnly: 'true', > ajaxOptions: {method: 'post'}, > paramName: 'test'}); > </script> > > When the information is inputted into my database it still has the > HTML code in it if HTML code is typed into the editor. > > I looked at this: > > http://www.prototypejs.org/api/string/stripTags > > but dont understand how to get it to work with the inplaceedit. > > Thank you for your help! > > Matt --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Prototype & script.aculo.us" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/prototype-scriptaculous?hl=en -~----------~----~----~----~------~----~------~--~---
