This week’s project is spidertie.com. Not a bad site by any means but it definately needed a face lift. A static site prior to the make over with very little to keep the visitor’s attention. According to the stats, 80% left after a view of the home page. The site was moved to a wordpress theme and has increased use of screen real estate and a lot of content above the fold.
Read the full story »Weekly reviews and ratings of the most popular and newest plugins
Ratings on free and premium wordpress themes by category and design.
What works? What doesn’t work? Are all things equal when it comes to wordpress themes and search engine optimization?
Random thoughts or rantings of a mad woman? Musings, questions, and all things related to the life of a programmer.
Remember when your mom put your pictures on the fridge? Well this is our version. See our latest projects in progress.
innerHTML doesn’t work with the textarea tag in Firefox
innerHTML is a common way to return the value of an html tag. I was recently working with an AJAX / JQuery application and all was going well. However, the <strong>innerHTML method wasn’t returning anything with a textarea tag. All of the other values were coming through just fine with the identical code.
Somewhere in the recesses of my memory I had recalled running in to this in the past (probably blocked out due to the pain!).
Anyway, a quick look on line and I remembered that innerHTML doesn’t work with Firefox. To return the text in a textarea tag, use the <strong>value</strong> reference instead
use this—> var myText = document.getElementById(‘myTextArea’).value;
Popularity: 100% [?]
Thought I’d post this simple jQuery menu sample code for those of you just starting out in jQuery.
It’s a very simplistic file and consists of 3 files and a reference to the actual jQuery javascript library.
A search engine “web spider” also known as a “web crawler” is code or software program from search engines such as Google that use it to find out whats on the web. The spider looks …
Do’s of SEO
Number One:
Take the time necessary to do a careful and in depth research of all your keywords and key phrases for your site on the services, or products you are trying to sell. …
What is the purpose of SEO?
The purpose of search engine optimization (SEO) is to boost a Web site’s traffic to a particular website and to outdo the competition when it comes to who is displayed …
This announcement was released last Friday on the WordPress.org site by Mark Jaquith. PHP 4 and mySQL 4 will no longer be supported after the 3.1 release of WordPress coming in September 2010.
PHP 4 …
As a former educator, you would think that the answer to this question is a resounding yes. However, that isn’t the case.
With computer programming, the degree is not nearly as crucial as the quality of the education received. This can not be emphasized enough.
I recently heard someone in the website marketing department of a college say “I don’t care what they learn once they are here. It’s my job to see that they enroll.”. Wow, can you say “used car salesman?” Needless to say, my jaw hit the table and I’ve been thinking about this comment since that day and decided it was time to voice an opinion on the matter.
When it comes to computer programming or networking, the mantra should always be “Quality over Quantity”. By this statement I mean that I would rather have 1 “can do” programmer than 10 “theory trained” scholars.
The ability to apply one’s knowledge to their profession is by far the most important factor in making a competent software developer. In order to apply knowledge, it is first and foremost important to fully understand the technology. The computer can’t read your diploma!
Trent found this free download while looking for new free software downloads he felt were worth mentioning on the free software blog.
I think it’s probably the handiest little tool I’ve had in a long time. It’s a color finder. Basically, you open the application (very, very small) and then drag over the color you want to find the values for. It gives you the hexadecimal and rgb values of the color. It also has a little past icon so you don’t have to go back and forth getting the color values.
Why can’t I get wp_home() and wp_front_page() to work in Wordpress?
A lot of coders pull their hair out over these two wordpress functions.
The answer is that these two functions will only query one time per page build. If it’s been used elsewhere to determine the current page, it has to be reset with the wp_reset_query() function first.
WordPress Related Posts by Denis automatically produces a list of related posts, based on the tags used and puts the list at the end of the post. It allows you to limit the number …