>>7112064Thanks, I used that as a template
>>7112231Not sure what this means, I'm beginning with this, is there a better alternative?
Here is what I have now, but its kinda screwy since the blue is showing when the page loads briefly, This has something to do with the .hide() and .show(). I have to figure that out or something. Oh well.
Im gonna try and figure out a way to hide them.
Still having a fair bit of trouble with centering everything, and getting everything on the same grid-lines, its so fucking frustrating.
For the "search page" exit I have it so that any click on the page will result in the hiding of the page, I would rather have it so that any click that is not the search bar itself, hides the page.
Is there anything in jquery to do the following? (Any click that is not on an element with id"search" causes the result.
$(!"#search").click(function () {
....... $("#searchpage").hide();
});
I also want the page to fade in, instead of show from the left as shown in the video, but I dont know if you can combine 2+ actions. like ->
$("#search").click(function () {
....... $("#searchpage").hide().fadeout(); ??
or
........$("#searchpage").fadeout().hide(); ??
});