Category Archives: jQuery

PHPHOST BLOG

Web Hosting Related Articles You May Need

jQuery: Load Page in a Div

Loading an external page in a div using jQuery is as simple as calling the jQuery Load method. The Load() method loads data from the server and places the returned HTML into the matched element.Assuming you have a Div called ‘divOne’ and an anchor … Continue reading

Posted in jQuery, Syndicated | Leave a comment

jQuery: Load Page in a Div

Loading an external page in a div using jQuery is as simple as calling the jQuery Load method. The Load() method loads data from the server and places the returned HTML into the matched element.Assuming you have a Div called ‘divOne’ and an anchor … Continue reading

Posted in jQuery, Syndicated | Leave a comment

jQuery: Numbering an Unordered List

Here’s a very simple script which adds numbers sequentially to an unordered list using jQuery
Let us assume you have an unordered list as shown below:

To add numbers to it sequentially, use this code:

<script type=”text/javascript”
src=”http:… Continue reading

Posted in jQuery, Syndicated | Leave a comment

jQuery: Numbering an Unordered List

Here’s a very simple script which adds numbers sequentially to an unordered list using jQuery
Let us assume you have an unordered list as shown below:

To add numbers to it sequentially, use this code:

<script type=”text/javascript”
src=”http:… Continue reading

Posted in jQuery, Syndicated | Leave a comment

jQuery size() vs length

I have seen a lot of jQuery developers getting confused over the usage of the jQuery size() function and length property. Both of these return the count of elements on the page or jQuery object.
jQuery documentation however says that the length propert… Continue reading

Posted in JavaScript, jQuery, Syndicated | Leave a comment

jQuery size() vs length

I have seen a lot of jQuery developers getting confused over the usage of the jQuery size() function and length property. Both of these return the count of elements on the page or jQuery object.
jQuery documentation however says that the length propert… Continue reading

Posted in JavaScript, jQuery, Syndicated | Leave a comment

jQuery: Editable Combo Box

I stumbled across a cool jQuery plugin that allows you to have editable combo box (HTML Select element). Using this plug-in, you can add, remove and edit items from the list.
Although the plug-in demos have clear instructions on how to setup the plug-i… Continue reading

Posted in ASP.Net, jQuery, Syndicated | Leave a comment

jQuery: Editable Combo Box

I stumbled across a cool jQuery plugin that allows you to have editable combo box (HTML Select element). Using this plug-in, you can add, remove and edit items from the list.
Although the plug-in demos have clear instructions on how to setup the plug-i… Continue reading

Posted in ASP.Net, jQuery, Syndicated | Leave a comment

Parsing XML using jQuery

I was recently asked if there was a simple way to parse XML using jQuery. My answer was I would always prefer serializing my data to JSON and then read it using jQuery. However if you do not have that option available for some reason, here’s a simple… Continue reading

Posted in jQuery, Syndicated | Leave a comment

Parsing XML using jQuery

I was recently asked if there was a simple way to parse XML using jQuery. My answer was I would always prefer serializing my data to JSON and then read it using jQuery. However if you do not have that option available for some reason, here’s a simple… Continue reading

Posted in jQuery, Syndicated | Leave a comment