If you’re into jQuery, then you need to bookmark this site. It’s amazing! Not only do you get links to some of the great jQuery plugins out there, you also get links to some amazing articles/tutorials on jQuery. Try it out and let me know if you need help with anything.

Visit Source

When I researched how to get pop ups to not be blocked using flash, in that research, I found out how to check and see if a popup was blocked or not. It’s such a simple solution I don’t know why I haven’t consciously noticed it before. I’ve created many popups in the past, just never thought about how I would check if a popup was blocked.

The Solution

Using JavaScript, put something like this in your code:

1
2
3
4
5
6
7
8
// this is sample code so replace
// wurl = the url you want opened
// wname = name given to the window so you can reference it again programmically
// wfeatures = optionally you can give it scroll bars, make it resizeable, etc.
var win = window.open(wurl, wname, wfeatures);
if(win == null || typeof(win) == "undefined" || win.location.href == 'about:blank') {
   alert("Please enabled popups for this site to continue.");  
}

That’s it! That’s all you need to do to test if someone has blocked your popup. Now you need to decide if it’s worth the hassle of working with popups and how to handle when a popup is blocked.

The three simple ways around using popups are:
CONTINUE READING


iPhone

Been thinking a lot about how I don’t have an iPhone lately. Then I thought…what if I wanted to keep iPhone users from visiting my site, in spite… Of course I’m not really going to do that. Only saying this because apparently you’re supposed to tell stories and have something exciting when you open for anything you write. Anyway..

Here’s how I figured out how to detect when an iPhone user is visiting your site, and how to send them to a specific page. That way, you can have a iPhone only site, or a mobile only site.


CONTINUE READING


I came across this article about The Roadmap To Becoming A Professional Freelance Web Designer. It’s a great article. I’m just not a fan of the name because the tips in the article can be used for a Web Developer, Programmer, Small Business & any type of product. Just to name a few. I think it’s weird that so many good blogs out there are geared for Web Designers and not everyone else. How unfortunate.

Regardless, it’s a great article and I hope you take down notes. The key thing you should take a way from this is “branding” because it has a powerful affect on people. If you’re branded in a good way, like Honda for instance. Honda is known for quality, right? Among other things. Now, if you were branded as “quality” then people would pay more for your service even though there are cheaper services. Like non-America for instance. Non-American labor is known for being cheaper than American labor. However, I feel strongly about this – America is the best damn country in the world – and I am so proud to be an American. Take that one to heart. My point being. America is so branded in my heart and in my soul that I will never outsource as long as I can help it. Of course I can’t guarantee any of my clients will feel the same way I do, but I try my hardest to push (& force!) my belief about America being the greatest onto other people.


CONTINUE READING


This is an oldie but a goody. In web development there comes a time when you need to force a download when someone clicks on a link, without telling them to “right click save as…” In the past this was always a problem. Now thanks to Google, you can type in keywords and find a nice, lovely blog post like this one and figure it out. And of course you’re not going to tell anyone because you want to look like a Rock Star. So you’re going to say “ain’t nothing but a thang.”

And before you do that, here’s how you’re going to save the day and prompt a “Save As” to the user so he/she can download his/her file:

1
2
# Put all your extensions after the word stream
AddType application/octet-stream .doc .mov .avi .pdf .xls .mp4 .xlsx .docm


CONTINUE READING


I’m always looking for economical ways of getting pretty visuals for my sites. Techradar put together a great list of sites that will help you into some nice visuals for you web sites.

Visit Source

45 Incredibly Useful Web Design Checklists and Questionaires

There comes a time in your life when you need to admit you’re not perfect. You may be the best damn web developer in the world (me), and you may know your stuff like the curves on a pretty woman. But you don’t always remember everything you need to know – all the time – and you know it!

The people at Smashing Magazine were kind enough to remind us that we’re not perfect, and that even though we are the best at what we do – we still need some help at times.

That’s why I’m proud to share with you the 45 Incredibly Useful Web Design Checklists and Questionaires from Smashing Magazine.


CONTINUE READING


This is a little tip taken from the book Vista Performance and Tuning Guide.

They say to put your computer to Sleep instead of hibernating or turning it off each time you want to shut down your computer. I can confirm this – it works wonderfully. Back before I knew anything about computers (and when computers took a year to boot) I would turn my computer completely off. Stupid, I know. But some people actually still do this. I used to always complain because it took so long to get back into the computer. Well, then I grew up and started to use the nifty “hibernate” feature. This worked wonderfully for several years. Of course, Sleep was available at the time, but the word “hibernate” sounded so much cooler. Needless to say (even though I’m saying it), I chose to “hibernate.”

Time passed by and I bought a Vista. Now, I was scared to buy Vista. I’ve heard so many bad things about it. Mostly from gossip which has been proved wrong. I actually like Vista. I’d say go buy Vista, but Windows 7 is out, so go get Windows 7.

The moral of the story, use Sleep on Vista because “hibernate” and shut-downs are too slow.