Friday, June 6, 2014

Responsive navbar collapse for single page applications

var windowWidth = $(window).width();
if(windowWidth <=767){
 collapse();
}
else{
 
}
function collapse(){
$('.navbar-collapse').click('li', function() {
  $('.navbar-collapse').collapse('hide');
 });
}

Javascript find highest and lowest from the given inputs

function highAndLow(numbers){ // numbers = "4 5 29 54 4 0 -214 542 -64 1 -3 6 -6"   let numbersInArr = numbers.split(' '...