jQuery stay focused!

This is really just something for all you new jQuery learners, if you want to keep the cursor inside of a text box, even if you click elsewhere on the page, you can do this:
//Initial focus on #inputfieldid
$(”#inputfieldid”).focus();
//When you click anywhere it focuses back on #inputfieldid
$(this).click(function(){
$(”#inputfieldid”).focus();
});

Jobs

So the summer is in full swing and I’m cranking out 45 hour work weeks. 9 - 7 with an hour lunch break has been the general theme. I’m now working the afternoons with a new company called JAT Digital Solutions which I have been doing extensive PHP/MySQL + HTML/CSS/jQuery for. I’m [...]