Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save sibaberpollo/cd236534a8047ec4e322 to your computer and use it in GitHub Desktop.
Save sibaberpollo/cd236534a8047ec4e322 to your computer and use it in GitHub Desktop.
$(".tabs #linea-rota").each(function() {
var width = $(window).width();
if (width <= 768) {
var html = $(this).html().split(" ");
html = html[0] + "<br>" + html.slice(1).join(" ");
$(this).html(html);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment