The Littlest jQuery Intro

little intro to jQuery

by Alex Cowan

HTML

<button type="button" id='search-btn'>Go</button>

JavaScript

//Code to Deal with Parts Search
$("#search-btn").on("click", function() {
  //On new search, start w/ all parts to start
 	console.log("I got clicked!")
});