This tutorial explain you how you can create a dynamic scrolling content box which load more contents when user scrolls to the bottom of the box.
HTML CODE:
<!–Main Wrapper and Content Scrollbox–>
<div id=”wrapper”>
<div id=”scrollbox” >
<div id=”content” >
<p>Visit Nepal 2010</p>
<p>Places in Nepal</p>
<p>When to go & weathere</p>
<p>Getting there & around</p>
<p>Practical information</p>
<p>History & Culture</p>
<p>Work & study</p>
<p>Tips & [...]
Ajax XMLHttpRequest Object Properties for Internet Explorer:
Property
Description
onreadystatechange
Contains the name of the event handler that should be called when the value of the readyState property changes. Read/Write
readyState
Contains state of the request. Read-only
responseBody
Contains a response body, which is one way HTTP responses can be returned, Read-only.
responseStream
Contains a response stream, a binary stream to the server. Read-only.
responseText
Contains the [...]
In this tutorial you will learn to select a top level category from one select box and to automatically populate the sub-category. If you are familiar with using select boxes for categorisation and sub-categories, jQuery can hugely simplify this task by adding a dash of AJAX.
In this method once the top level category select [...]
In: AJAX
1 Jun 2008Instead of a user request being made of the server via, for example, a normal HTTP POST or GET request, such as would be made by submitting a form or clicking a hyperlink, an Ajax script makes a request of a server by using the Javascript XMLHTTPRequest object.
Although this object may be unfamiliar to many, [...]
In: AJAX
14 May 2008What is Ajax?
