jQuery is a multi-browser JavaScript library designed to simplify the client-side scripting of HTML. It was released in January 2006 at BarCamp NYC by John Resig. Used by over 55% of the 10,000 most visited websites, jQuery is the most popular JavaScript library in use today
Tag Archives: jQuery
jquery conflict
<script type=”text/javascript”>
jQuery.noConflict();
jQuery(document).ready(function() {
// Your code comes here
});
</script>
AJAX
AJAX is Asynchronous JavaScript and XML.
AJAX is not a new programming language, but a new way to use existing standards.
AJAX is the art of exchanging data with a server, and updating parts of a web page – without reloading the whole page.