Quoted By:
Sorry cursor wasn't collected.
I want to accomplish something like this.
Click search button on the nav bar -> and a page will fill the current page including a search form.
I'm new to this stuff but I'm thinking jquery thing:
(blue page is a div containing the search, how to i have it fill the entire page? using the vw or vh thing (just read about that))
$(document).ready(function () {
$("#blue-page").hide();
$("#search") .click(function () {
$("#blue-page").show();
});
});
Now I have to create js that when the cursor is clicked on something that is not the search bar the "blue-page" hides again.
Stuff is fun, glad I found this thread.