I was wondering if it's somehow possible to remove the wrapper div from Rails hidden inputs that are automatically generated on forms?
The reason is that it's giving me a 'B' on my ySlow report and telling me to avoid CSS expressions. I know this small thing really doesn't matter for performance, but I would like to know if it's possible.
Grade B on Avoid CSS expressions
There is a total of 1 expression
inline <style> tag #1 (1 expression)
<form accept-charset="UTF-8" action="/site/search" method="get">
<div style="margin:0;padding:0;display:inline">
<input name="utf8" type="hidden" value="✓" />
</div
...