Skip to content
This repository has been archived by the owner on Jan 17, 2025. It is now read-only.

resposive class in kickstart.js #79

Open
FelipeAzambuja opened this issue Jan 29, 2016 · 0 comments
Open

resposive class in kickstart.js #79

FelipeAzambuja opened this issue Jan 29, 2016 · 0 comments

Comments

@FelipeAzambuja
Copy link

Add this code to work
var w = $(document).width();
if (w > 1024) {
$(".show-desktop").show();
$(".hide-desktop").hide();
} else if (w > 768 && w < 1024) {
$(".show-tablet").show();
$(".hide-tablet").hide();
} else if (w < 768) {
$(".show-phone").show();
$(".hide-phone").hide();
}

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant