Junkie Tips: Disable Right Click Menu
Although this is not recommended from a usability standpoint, sometimes occasions call for the need to disable the browsers right click menu.
Here’s a nice snippet to accomplish that:
$(document).bind('contextmenu',function(e){ e.preventDefault(); });


Create A Simple PHP Contact Form
Ya that is what I've been doing I was just hoping...
Create A Simple PHP Contact Form
The action just means submit the form to the current page...
Create A Simple PHP Contact Form
You can change the forms action to the URL of your...