<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://codingchoice.com/learn/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="https://codingchoice.com/learn/feed.php">
        <title>Learning Center - jquery</title>
        <description></description>
        <link>https://codingchoice.com/learn/</link>
        <image rdf:resource="https://codingchoice.com/learn/_media/logo.png" />
       <dc:date>2026-05-03T10:42:28+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/advanced_techniques?rev=1739242659&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/ajax_with_jquery?rev=1739242138&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/animations_and_effects?rev=1739241969&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/event_handling?rev=1739241683&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/introduction?rev=1739241219&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/jquery_plugins?rev=1739242250&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/manipulating_dom?rev=1739241828&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/selecting_elements?rev=1739241531&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/setting_up?rev=1739241341&amp;do=diff"/>
                <rdf:li rdf:resource="https://codingchoice.com/learn/jquery/sidebar?rev=1739242695&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://codingchoice.com/learn/_media/logo.png">
        <title>Learning Center</title>
        <link>https://codingchoice.com/learn/</link>
        <url>https://codingchoice.com/learn/_media/logo.png</url>
    </image>
    <item rdf:about="https://codingchoice.com/learn/jquery/advanced_techniques?rev=1739242659&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:57:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>advanced_techniques</title>
        <link>https://codingchoice.com/learn/jquery/advanced_techniques?rev=1739242659&amp;do=diff</link>
        <description>Advanced jQuery Techniques

Chaining Methods


$(&quot;#box&quot;).css(&quot;color&quot;, &quot;red&quot;).slideUp(1000).slideDown(1000);


Deferred Objects and Promises


$.when($.ajax(&quot;https://api.example.com/data&quot;), $.ajax(&quot;https://api.example.com/info&quot;))
    .done(function(response1, response2) {
        console.log(&quot;Both requests completed successfully&quot;);
    })
    .fail(function() {
        console.log(&quot;An error occurred&quot;);
    });</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/ajax_with_jquery?rev=1739242138&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:48:58+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>ajax_with_jquery</title>
        <link>https://codingchoice.com/learn/jquery/ajax_with_jquery?rev=1739242138&amp;do=diff</link>
        <description>AJAX with jQuery

Fetching Data


$.get(&quot;https://api.example.com/data&quot;, function(response) {
    console.log(response);
});


Sending Data


$.post(&quot;https://api.example.com/save&quot;, { name: &quot;John&quot; }, function(response) {
    console.log(response);
});</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/animations_and_effects?rev=1739241969&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:46:09+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>animations_and_effects</title>
        <link>https://codingchoice.com/learn/jquery/animations_and_effects?rev=1739241969&amp;do=diff</link>
        <description>Animations and Effects

Show and Hide


$(&quot;#panel&quot;).hide();
$(&quot;#panel&quot;).show();


Fade Effects


$(&quot;#box&quot;).fadeOut();
$(&quot;#box&quot;).fadeIn();
$(&quot;#box&quot;).fadeToggle();


Slide Effects


$(&quot;#menu&quot;).slideUp();
$(&quot;#menu&quot;).slideDown();
$(&quot;#menu&quot;).slideToggle();</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/event_handling?rev=1739241683&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:41:23+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>event_handling</title>
        <link>https://codingchoice.com/learn/jquery/event_handling?rev=1739241683&amp;do=diff</link>
        <description>Event Handling

jQuery simplifies event handling for various user interactions.

Click Event


$(&quot;#btn&quot;).click(function() {
    alert(&quot;Button Clicked!&quot;);
});


Mouse Events


$(&quot;#box&quot;).mouseenter(function() {
    $(this).css(&quot;background-color&quot;, &quot;lightblue&quot;);
});
$(&quot;#box&quot;).mouseleave(function() {
    $(this).css(&quot;background-color&quot;, &quot;white&quot;);
});</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/introduction?rev=1739241219&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:33:39+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>introduction</title>
        <link>https://codingchoice.com/learn/jquery/introduction?rev=1739241219&amp;do=diff</link>
        <description>Introduction to jQuery

jQuery is a fast, small, and feature-rich JavaScript library that simplifies HTML document traversal, event handling, animation, and AJAX interactions. It provides an easy-to-use API that works across multiple browsers.

Why Use jQuery?</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/jquery_plugins?rev=1739242250&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:50:50+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jquery_plugins</title>
        <link>https://codingchoice.com/learn/jquery/jquery_plugins?rev=1739242250&amp;do=diff</link>
        <description>jQuery Plugins

jQuery UI Example


$(&quot;#datepicker&quot;).datepicker();


Slick Carousel Example


$(&quot;.slider&quot;).slick({
    autoplay: true,
    dots: true
});</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/manipulating_dom?rev=1739241828&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:43:48+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>manipulating_dom</title>
        <link>https://codingchoice.com/learn/jquery/manipulating_dom?rev=1739241828&amp;do=diff</link>
        <description>Manipulating the DOM

Changing HTML Content


$(&quot;#demo&quot;).html(&quot;Hello, jQuery!&quot;);


Changing Attributes


$(&quot;#myLink&quot;).attr(&quot;href&quot;, &quot;https://example.com&quot;);


Adding and Removing Classes


$(&quot;#box&quot;).addClass(&quot;highlight&quot;);
$(&quot;#box&quot;).removeClass(&quot;highlight&quot;);</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/selecting_elements?rev=1739241531&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:38:51+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>selecting_elements</title>
        <link>https://codingchoice.com/learn/jquery/selecting_elements?rev=1739241531&amp;do=diff</link>
        <description>Selecting Elements

Using jQuery, you can select elements with ease using CSS selectors.

Basic Selectors


$(&quot;p&quot;).css(&quot;color&quot;, &quot;blue&quot;); // Selects all &lt;p&gt; elements and makes text blue
$(&quot;#myId&quot;).css(&quot;background-color&quot;, &quot;yellow&quot;); // Selects elements with ID 'myId'
$(&quot;.myClass&quot;).css(&quot;font-size&quot;, &quot;20px&quot;); // Selects elements with class 'myClass'</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/setting_up?rev=1739241341&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:35:41+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>setting_up</title>
        <link>https://codingchoice.com/learn/jquery/setting_up?rev=1739241341&amp;do=diff</link>
        <description>Setting Up jQuery

Including jQuery via CDN

Using a Content Delivery Network (CDN) ensures fast loading speeds and better caching.


&lt;script src=&quot;https://code.jquery.com/jquery-3.6.0.min.js&quot;&gt;&lt;/script&gt;


Local Installation

To use jQuery offline, download it from jQuery's official website and include it in your project:</description>
    </item>
    <item rdf:about="https://codingchoice.com/learn/jquery/sidebar?rev=1739242695&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-11T02:58:15+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sidebar</title>
        <link>https://codingchoice.com/learn/jquery/sidebar?rev=1739242695&amp;do=diff</link>
        <description>*  Introduction
	*  Setting Up jQuery
	*  Selecting Elements
	*  Event Handling
	*  Manipulating the DOM
	*  Animations and Effects
	*  AJAX with jQuery
	*  jQuery Plugins
	*  Advanced jQuery Techniques</description>
    </item>
</rdf:RDF>
