Wednesday, December 17, 2014

Javascript jQuery Scroll Event Listener Print Scroll Position to Console Log

$(window).scroll(function (event) {
    var scroll = $(window).scrollTop();
    console.log(scroll);
});

Save scroll position for reload or ajax call for new content

var scroll = 0;
scroll = $(window).scrollTop();
console.log(scroll); 
location.reload();
$(window).scrollTop(scroll);

Thursday, December 4, 2014

Iterating over all cookies and local storage

console.log('COOKIES LIST BEGIN');
var theCookies = document.cookie.split(';');
 for (var i = 1 ; i <= theCookies.length; i++) {
        console.log(theCookies[i-1]);
    }
console.log('COOKIES LIST END');
console.log('localStorage LIST BEGIN');
for(var i in localStorage) {
       console.log(localStorage[i]);
        }

 for(var i=0, len=localStorage.length; i " + value);
    if(key == 'GetSystemStatus') {
            var bill = value.search(/ bill=\"8\" /);
            console.log(bill);
            bill != -1 ? console.log('did NOT find') : console.log('found it'); }
        }
        }