[...new Set([1,2,3,1,2,3])]; // [1,2,3]
Array.from(new Set([1,2,3,1,2,3])); // [1,2,3]
[...new Set([1,2,3,1,2,3])]; // [1,2,3]
Array.from(new Set([1,2,3,1,2,3])); // [1,2,3]
$(document).on('focus', 'input, textarea', function() {
$.mobile.activePage.find("div[data-role='footer']").hide();
});
$(document).on('focusout', 'input, textarea', function() {
$.mobile.activePage.find("div[data-role='footer']").show();
});