- // CHECKS WINDOW SIZE AND ADDS/REMOVES MUSIC & PHOTOS
- var $window = $(window);
- var $pane = $('#pane1');
- function checkWidth() {
- var windowsize = $window.width();
- if (windowsize < 647) {
- //if the window is greater than 647px wide then turn on jScrollPane..
- $(".section-music, .section-photos").each(function() {
- $(this).detach();
- });
- $.scrollify.update();
- }
- if (windowsize >= 647) {
- //if the window is greater than 647px wide then turn on jScrollPane..
- $(".section-music").insertAfter(".section-about");
- $.scrollify.update();
- }
- }
-
- // Execute on load
- checkWidth();
- // Bind event listener
- $(window).resize(checkWidth);
Any ideas on how I can get the sections to add again? Thanks much!