Posts

Showing posts from December, 2012

Featured Post

Ajax stop

.ajaxStop() Returns: jQuery .ajaxStop(handler()) handler() The function to be invoked. Register a handler to be called when all Ajax requests have completed. This is an Ajax Event. Whenever an Ajax request completes, jQuery checks whether there are any other outstanding Ajax requests. If none remain, jQuery triggers the ajaxStop event. Any and all handlers that have been registered with the .ajaxStop() method are executed at this time. The ajaxStop event is also triggered if the last outstanding Ajax request is cancelled by returning false within the beforeSend callback function. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxStop(function() { $(this).text('Triggered ajaxStop handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); Whe...

Ajax start

.ajaxStart() Returns: jQuery .ajaxStart(handler()) handler() The function to be invoked. Register a handler to be called when the first Ajax request begins. This is an Ajax Event. Whenever an Ajax request is about to be sent, jQuery checks whether there are any other outstanding Ajax requests. If none are in progress, jQuery triggers the ajaxStart event. Any and all handlers that have been registered with the .ajaxStart() method are executed at this time. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxStart(function() { $(this).text('Triggered ajaxStart handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); When the user clicks the button and the Ajax request is sent, the log message is displayed. Note: Because .ajaxStart() is impl...

Ajax send

.ajaxSend() Returns: jQuery .ajaxSend(handler(event, jqXHR, ajaxOptions)) handler(event, jqXHR, ajaxOptions) The function to be invoked. Attach a function to be executed before an Ajax request is sent. This is an Ajax Event. Whenever an Ajax request is about to be sent, jQuery triggers the ajaxSend event. Any and all handlers that have been registered with the .ajaxSend() method are executed at this time. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxSend(function() { $(this).text('Triggered ajaxSend handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); When the user clicks the button and the Ajax request is about to begin, the log message is displayed. Note: Because .ajaxSend() is implemented as a method of jQuery instances, we ...

Ajax error

.ajaxError() Returns: jQuery .ajaxError(handler(event, jqXHR, ajaxSettings, thrownError)) handler(event, jqXHR, ajaxSettings, thrownError) The function to be invoked. Register a handler to be called when Ajax requests complete with an error. This is an Ajax Event. Whenever an Ajax request completes with an error, jQuery triggers the ajaxError event. Any and all handlers that have been registered with the .ajaxError() method are executed at this time. To observe this method in action, set up a basic Ajax load request. Trigger Attach the event handler to any element: $("div.log").ajaxError(function() { $(this).text( "Triggered ajaxError handler." ); }); Now, make an Ajax request using any jQuery method: $("button.trigger").click(function() { $("div.result").load( "ajax/missing.html" ); }); When the user clicks the button and the Ajax request fails, because the requested file is missing, the log message is display...

Ajax complete

Returns: jQuery .ajaxComplete(handler(event, XMLHttpRequest, ajaxOptions)) handler(event, XMLHttpRequest, ajaxOptions) The function to be invoked. Register a handler to be called when Ajax requests complete. This is an Ajax Event. Whenever an Ajax request completes, jQuery triggers the ajaxComplete event. Any and all handlers that have been registered with the .ajaxComplete() method are executed at this time. To observe this method in action, we can set up a basic Ajax load request: Trigger We can attach our event handler to any element: $('.log').ajaxComplete(function() { $(this).text('Triggered ajaxComplete handler.'); }); Now, we can make an Ajax request using any jQuery method: $('.trigger').click(function() { $('.result').load('ajax/test.html'); }); When the user clicks the button and the Ajax request completes, the log message is displayed. Note: Because .ajaxComplete() is implemented as a method of jQuery object ...

google service with maven dependencies packed with jar

Image
--> Narayana Dasa.pdf Vedic Astrology Integrated Approach Brihat Parasar Hora Sastra.pdf Buddhi Gati Dasa.pdf Kundali Analysis Vedic Software PVR Lessons Astrology Material <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion> 4.0.0</modelVersion> <groupId> com.majecek.gdata</groupId> <artifactId> google-service</artifactId> <version> 1.0-SNAPSHOT</version> <packaging> jar</packaging> <name> google-service</name> <url> http://maven.apache.org</url> <properties> <project.build.sourceEncoding> UTF-8</project.build.sourceEncoding> </properties> <repositories> <repository> <id> mandubian-mvn</id> <url...