$(document).ready(function() { // Instructs the browser to release the focus from buttons. Could be a Bootstrap bug. $(".btn").mouseup(function() { $(this).blur(); }) // Push the 'Actions' pane to the bottom on mobile if ($('body').width() < 960) { $("#actions").insertBefore("#charities"); } else { $("#actions").insertAfter("#intro"); } });