jQuery Tab by example

Sep 12th, 2011

jQuery is nice javascript library. I’m posting here how to create tab elements easily via jQuery.

Read more…

Tags: , ,

Parse links from given html content

Jul 4th, 2011

You can parse a tags (links) using this function. I have published loading remote file content function in previous post. Using the functions together you can crawl links of websites. :)
Read more…

Get remote file content function

Jul 3rd, 2011

The function will return content of given URL.

Read more…

Speeding Up Your Web Site

Jun 26th, 2011

Minimize HTTP Requests

80% of the end-user response time is spent on the front-end. Most of this time is tied up in downloading all the components in the page: images, stylesheets, scripts, Flash, etc. Reducing the number of components in turn reduces the number of HTTP requests required to render the page. This is the key to faster pages.

One way to reduce the number of components in the page is to simplify the page’s design. But is there a way to build pages with richer content while also achieving fast response times? Here are some techniques for reducing the number of HTTP requests, while still supporting rich page designs.
Read more…

cPanel/WHM migration

Feb 11th, 2011

Yesterday I have moved my dedicated server to VPS. cPanel has a great feature that copies user from another cPanel server. All of my accounts except 1 account have been moved successfully with via the feature. The account has failed was with huge data approximately 500GB. But my server has only 400GB of disk space free. So i tried several times to move the account to save all subdomains, dns records, email account etc,… Then I found a way to move it. Read more…

HTTP Header/Status codes

Jan 10th, 2011

Sometimes someone needs to know about header codes. Especially while using AJAX.
So I’m posting the codes recently used. Read more…

Tags:

Image Slider

Sep 21st, 2010

Simple jQuery image slider script.
Read more…

Disable all links via jQuery

Jun 24th, 2010

Grabbing element with jQuery is very easy. In this example i’ll disable all links using jQuery.
Read more…

jQuery Ajax example demo

Feb 2nd, 2010

Javascript code (jQUERY):
Read more…