Junkie Tip: Check If An Element Exists
A good way to see if the element you are looking for exists (with jQuery).
if ($('#element-id').length) {
//do something
}
A good way to see if the element you are looking for exists (with jQuery).
if ($('#element-id').length) {
//do something
}
Nate Smith has written 21 articles for Box Model Junkie
I am a 28 year old designer / developer from Peoria, IL who is very into PHP, WordPress, Django and jQuery. I have a huge passion for the web and love learning new things. You can follow me on twitter @imns81
Every site needs a contact form, but for a lot of beginners, the code can be a bit intimidating at first. In this article we are go...
Ask most freelancers what the hardest part about their job is and they will tell you finding new clients. It's a pain to do and takes ...
Recently introduced in Wordpress 3 is the ability to create custom menus. For anyone who has ever developed a theme, this was long a ...
Although this is not recommended from a usability standpoint, sometimes occasions call for the need to disable the browsers right click...
YUI3 has these great things called widgets. For you jQuery guys, a widget is sorta like a plugin. Widget driven development is nice b...
A good way to see if the element you are looking for exists (with jQuery). ...
© 2011 Box Model Junkie.
An IMNS Media Blog

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...