mycomponent = LOAD(..., _style='display:inline')<span id='mycomponent'></span>
<script>$.web2py.component('{{=URL(...)}}', 'mycomponent', el=$('#mycomponent'));</script>LOAD(..., _class='w2p_component')You may be able to use jquery unwrap, wrap, or replaceFor example, I want to load a component and not generate the wrapping DIV so I added a unique id to the top element in my view.load file and this inline at the bottom:<script>$("#unique-id").unwrap();</script>