Remove HTML from webform results?
I have a webform with 2 select fields, and the values have some HTML in them to get a nifty hover effect, explaining more about the values.
But it sends the HTML with the form results, which isn't really what I want, and it's annoying for the person who actually uses the form results.
I've been trying to futz around with the additional processing option and not really getting anywhere. Basically I'm wandering into one of those corners of Drupal about which I know nothing. The usual Googling doesn't seem to be helping me any, and my usual "smash it with rocks" experimentation techniques aren't working either. :)
1) Is there a straightforward way to do what I'm looking for?
2) If not, any ideas for getting the hover working in some way that gets the markup out of the field values?
Thanks in advance for any help you can provide!


Ical feed
Put the content elsewhere
If you do a little JQuery programming, you should be able to store the content you want to display somewhere else on the page in a hidden DIV, rather than inside your label's title.
It looks like with the
It looks like with the additional processing field you could grab the submitted values and run them through the php function strip_tags() (http://us2.php.net/manual/en/function.strip-tags.php). Hopefully that will point you in the right direction, maybe someone more familiar with webform can provide some details on how to access the submitted values from the additional processing field.
See, that's what I thought....
But I can't seem to figure out how to reassign those variables. I may just have to go with Jennifer's idea of moving the data to someplace else in the node. (Sigh)