Google analytics has lots of functionality but it does not provide an easy way of tracking outbound links on click. MyBlogLog provides this functionality is very useful way but that is free only 10 entry each days. That also has restriction on free version that you cannot see report after… READ MORE
This Ajax example will give you an idea of, how to present users a dynamic data based on input using Ajax method. I will use jQuery JavaScript library for this linked select lists example. Dynamically Populate Select List by Ajax is an example using plain JavaScript code. Suppose a user… READ MORE
To remove the Options from Select list, you need to assign NULL value to the option you want to delete. Or, you can use function remove() on select object.
Solution here are using simple JavaScript. After this, you will find solution using JQuery.
<script type=”text/javascript”>
function remSelOpt(inp1, sel1)
{
len1… READ MORE
Sometimes you may want to see online preview of your HTML code.
So that you can evaluate your HTML code for correctness and take corrective action if needed.
Here this little script, both in simple JavaScript and in JQuery, will provide you evaluation facility for your HTML code.
You will… READ MORE