We have talked about the jqBarGraph a few days ago.
jqBarGraph – jQuery Bar Chart Plugin
Here are other free libraries where you can create more fancy charts such as pie chart with really cool features.
We have talked about the jqBarGraph a few days ago.
jqBarGraph – jQuery Bar Chart Plugin
Here are other free libraries where you can create more fancy charts such as pie chart with really cool features.
A few months ago, i am working on a website project which contains a very wide HTML table. The client wants to keep the top row and the two columns on the left hand side of the table sticky. There is no proper way to do it but and the only solution i could found is using a jQuery library written by Conan Albrecht. The original post could be found in the link below but the source link is no longer valid.
A JQuery Plugin For Freezing Table Rows/Columns
Luckily i have a copy of the lib and you can download here.
Continue reading
Creating a HTML email which is compatible with Microsoft Outlook is a really big headache. This is because Microsoft Outlook use the Microsoft Word engine to render HTML.
The following are some notes which could help you before you start working on a HTML email template.
Continue reading
We talk about how to generate a taxonomy term selection list in the following post.
Drupal 7 – Create a taxonomy term selection list of a specific vocabulary @ 1
So we continue to add the jQuery/Javascript code such that when the term is selected, the browser will open the corresponding term page.
The following piece of jQuery/Javascript is redirect you to the selected term page.
Continue reading
Next: Drupal 7 – Create a taxonomy term selection list of a specific vocabulary @ 2
I want to create a HTML selection list which contains the taxonomy terms of a vocabulary. When a option is selected, the browser will go to the selected term page. In this post, i would like to share how to generate a selection list by PHP.
I have a vocabulary which has terms in 2-level. The selection list could generated as follow.
Continue reading
We have talked about how to create share link on Facebook and Twitter.
Create Facebook Share hyperlink for specific URL
Create Twitter Share hyperlink for specific URL
So this time is the Google Plus share link.
https://plus.google.com/share?url=<url>
https://plus.google.com/share?url=http://eureka.ykyuen.info/about
Continue reading
We can create a Twitter share hyperlink just like what we did for Facebook share as we mentioned before.
Create Facebook Share hyperlink for specific URL
For Twitter sharing, it can be done as follow.
http://twitter.com/intent/tweet?text=<tweet>&url=<url>
Try the following link.
http://twitter.com/intent/tweet?text=About+Eureka!&url=http://eureka.ykyuen.info/about
Continue reading
We can create an <a> anchor hyperlink which will share a specific URL on Facebook.
http://www.facebook.com/sharer/sharer.php?u=<url>
For example, the following URL which share my About page on Facebook.
http://www.facebook.com/sharer/sharer.php?u=http://eureka.ykyuen.info/about
Continue reading
There are some methods like Server Side Includes which allow us to include other HTML files into a web page on a webserver like
<!-- #include virtual="./common.html" -->
But this technique require server side setting and may be not supported by some web hosting.
Another way to include .html in a web page is using jQuery insertion.
Continue reading