As mentionned, I would like to not have a property on a div on mobile device.
I have done that so far, which works with chrome but probably not with other browsers :
<div collapse="true" class="visible-xs">
<div class="hidden-xs">
...
</div>
What's the correct way to do this ? Is there a way I can get away without using js ?
Thanks