<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://www.riksoft.it/wikiriks/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://www.riksoft.it/wikiriks/feed.php">
        <title>WikiRiks - jquery</title>
        <description></description>
        <link>https://www.riksoft.it/wikiriks/</link>
        <image rdf:resource="https://www.riksoft.it/wikiriks/_media/wiki/logo.png" />
       <dc:date>2026-05-15T09:29:54+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/datepicker-z-index-foreground"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/paste-event-not-working"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/resize-iframe-to-its-content"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/select-ui-tab-by-id-and-index"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/start"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/swap-2-elements-at-any-distance-keeping-events"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-centered"/>
                <rdf:li rdf:resource="https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-shown"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://www.riksoft.it/wikiriks/_media/wiki/logo.png">
        <title>WikiRiks</title>
        <link>https://www.riksoft.it/wikiriks/</link>
        <url>https://www.riksoft.it/wikiriks/_media/wiki/logo.png</url>
    </image>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/datepicker-z-index-foreground">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-03T15:35:46+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>How to bring Datepicker in the foreground with css z-index</title>
        <link>https://www.riksoft.it/wikiriks/jquery/datepicker-z-index-foreground</link>
        <description>How to bring Datepicker in the foreground with css z-index

Sometimes it happens that the jQuery datepicker is close to another active element, e.g. a slideshow, and when it pops up it remains on a lower layer, partially or completly invisibile.

I read several complicated js workaround about that, but the best solution is simpler than expected and can be found browsing the dom.</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/paste-event-not-working">
        <dc:format>text/html</dc:format>
        <dc:date>2022-10-03T16:05:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jQuery paste event not working</title>
        <link>https://www.riksoft.it/wikiriks/jquery/paste-event-not-working</link>
        <description>jQuery paste event not working

In this example I wanted to do somenthing every time the input value is changed by typing, pasting or set by code from another event.


$(&#039;#foo [name=&quot;vid&quot;]&#039;).on(&#039;change keyup paste&#039;, function(){
   if($(this).val()){
      //do something
   }
});</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/resize-iframe-to-its-content">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-03T15:42:52+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Resize an iframe to its contents</title>
        <link>https://www.riksoft.it/wikiriks/jquery/resize-iframe-to-its-content</link>
        <description>Resize an iframe to its contents

You have an iFrame and you want its height to automatically adapts to the size of the page in src.


$(&quot;#myframe&quot;).load(function() {
	$(this).height($(this).contents().find(&quot;body&quot;).height() + 30 );
});


NB: the number 30 is an arbitrary number to add extra space</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/select-ui-tab-by-id-and-index">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-03T15:46:18+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jQuery select UI tabs by id (and index)</title>
        <link>https://www.riksoft.it/wikiriks/jquery/select-ui-tab-by-id-and-index</link>
        <description>jQuery select UI tabs by id (and index)

With the latest versions of jQuery is not not trivial to select a tab by ID as it was before.

Previously you could use:


$(&quot;#tabs&quot;).tabs(&quot;select&quot;, &quot;#tab-1&quot;);


now is more difficult since that function has been deprecated and the ufficial method is only</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/start">
        <dc:format>text/html</dc:format>
        <dc:date>2014-08-29T12:15:36+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jQuery</title>
        <link>https://www.riksoft.it/wikiriks/jquery/start</link>
        <description>jQuery

Tips and tricks about jQuery toolkit.

----------

Table of contents
jquery index</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/swap-2-elements-at-any-distance-keeping-events">
        <dc:format>text/html</dc:format>
        <dc:date>2024-01-16T16:03:41+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jQuery: swap elements at any distance without losing events</title>
        <link>https://www.riksoft.it/wikiriks/jquery/swap-2-elements-at-any-distance-keeping-events</link>
        <description>jQuery: swap elements at any distance without losing events

This function allows you to swap 2 elements in the DOM, in the same container, regardless of how many other elements are in between, and without losing the events attached to the swapped elements. It works in any direction, left to right, right to left, top to bottom, bottom to top, and mixed.
Before getting to this solution I&#039;ve done lots of experiments and I can state that nothing can beat this in simplicity.</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-centered">
        <dc:format>text/html</dc:format>
        <dc:date>2014-09-03T15:49:33+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Google map pin not centered in ui tab</title>
        <link>https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-centered</link>
        <description>Google map pin not centered in ui tab

Scenario

You put a Google map into a jquery ui tab that is not the first one, and when you open that tab the Google Map is not centered on the point of interest.

This happens because Google doesn&#039;t center the map until it is visible on screen. You can test it yourself: if you open the page and quickly go on the tab containing the map, the map will be centered. On the contrary, if you wait a few seconds before opening that tab, it remains uncentered.</description>
    </item>
    <item rdf:about="https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-shown">
        <dc:format>text/html</dc:format>
        <dc:date>2014-12-24T11:59:01+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>Google MAP api V3 not shown into jQuery UI tab</title>
        <link>https://www.riksoft.it/wikiriks/jquery/ui-tab-google-map-not-shown</link>
        <description>Google MAP api V3 not shown into jQuery UI tab

This solution will work forever.

I&#039;ve seen a lot of info about this problem, quite often very complicated and not working.
The best solution is the easiest one: initializing the map only when it&#039;s to be shown.</description>
    </item>
</rdf:RDF>
