<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="http://wiki.billyrondon.com/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="http://wiki.billyrondon.com/feed.php">
        <title>WIKI de apuntes de Billy Rondón - informatica:lenguajes_de_programacion:javascript:bibliotecas</title>
        <description></description>
        <link>http://wiki.billyrondon.com/</link>
        <image rdf:resource="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg" />
       <dc:date>2026-06-04T19:23:01+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jquery?rev=1744078535&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jqueryui?rev=1744078557&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:openstreetmaps?rev=1750994302&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:select2?rev=1744078503&amp;do=diff"/>
                <rdf:li rdf:resource="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:sortable?rev=1744078581&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg">
        <title>WIKI de apuntes de Billy Rondón</title>
        <link>http://wiki.billyrondon.com/</link>
        <url>http://wiki.billyrondon.com/lib/exe/fetch.php/wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jquery?rev=1744078535&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T02:15:35+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jquery</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jquery?rev=1744078535&amp;do=diff</link>
        <description>JQUERY SELECTOR


$(&quot;input[type=&#039;checkbox&#039;]:checked&quot;).not(&quot;:disabled&quot;)

$(&quot;input[type=&#039;checkbox&#039;]:checked&quot;).not(&quot;[disabled]&quot;)

$(&quot;input[type=&#039;checkbox&#039;]:checked:not(:disabled)&quot;)


	*  &lt;https://stackoverflow.com/questions/12358231/jquery-selector-for-all-checked-checkboxes-that-are-not-disabled&gt;</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jqueryui?rev=1744078557&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T02:15:57+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>jqueryui</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:jqueryui?rev=1744078557&amp;do=diff</link>
        <description>Notas Jquery UI

Boton “close” cambiarlo a “x”

Linea : 11964



	closeText: &quot;close&quot;,




$.widget( &quot;ui.dialog&quot;, {
	version: &quot;1.12.1&quot;,
	options: {
		appendTo: &quot;body&quot;,
		autoOpen: true,
		buttons: [],
		classes: {
			&quot;ui-dialog&quot;: &quot;ui-corner-all&quot;,
			&quot;ui-dialog-titlebar&quot;: &quot;ui-corner-all&quot;
		},
		closeOnEscape: true,
		closeText: &quot;close&quot;,</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:openstreetmaps?rev=1750994302&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-06-27T03:18:22+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>openstreetmaps</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:openstreetmaps?rev=1750994302&amp;do=diff</link>
        <description>MAPAS web

Extensiones OSM

&lt;https://mappinggis.com/2017/01/plugins-para-openlayers-3/&gt;

&lt;http://viglino.github.io/ol-ext/&gt;

ejemplo:



&lt;html&gt;
	&lt;head&gt;
		&lt;title&gt;Test Maps&lt;/title&gt;
&lt;script src=&quot;http://www.openlayers.org/api/OpenLayers.js&quot;&gt;&lt;/script&gt;
&lt;script&gt;

function carga() {
    map = new OpenLayers.Map(&quot;mapdiv&quot;);
    map.addLayer(new OpenLayers.Layer.OSM());

    //var lonLat = new OpenLayers.LonLat( -0.1279688 ,51.5077286 )
	var lonLat = new OpenLayers.LonLat( -77.1029758, -12.0544268	)
      …</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:select2?rev=1744078503&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T02:15:03+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>select2</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:select2?rev=1744078503&amp;do=diff</link>
        <description>Select2

FreeText Input

Activar


&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head lang=&quot;en&quot;&gt;
    &lt;meta charset=&quot;UTF-8&quot;&gt;
    &lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/css/select2.min.css&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.4/jquery.min.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.0/js/select2.min.js&quot;&gt;&lt;/script&gt;
    &lt;title&gt;Select 2&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;form&gt;
    &lt;select id=&quot;e1&quot;&gt;
        &lt;option value=&quot;1&quot;…</description>
    </item>
    <item rdf:about="http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:sortable?rev=1744078581&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-04-08T02:16:21+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sortable</title>
        <link>http://wiki.billyrondon.com/doku.php/informatica:lenguajes_de_programacion:javascript:bibliotecas:sortable?rev=1744078581&amp;do=diff</link>
        <description>javascript sortable

	*  &lt;https://htmlstream.com/&gt;

	*  &lt;http://sortablejs.github.io/Sortable/&gt;
	*  &lt;https://github.com/SortableJS/Sortable&gt;
		*  &lt;https://github.com/SortableJS/jquery-sortablejs&gt;


	*  &lt;https://htmlstream.com/front-dashboard/documentation/sortablejs.html&gt;

Multiple

	*  &lt;https://stackoverflow.com/questions/3774755/jquery-sortable-select-and-drag-multiple-list-items&gt;
	*  &lt;http://jsfiddle.net/hQnWG/&gt;


$(&quot;li&quot;).click(function() {
    $(this).toggleClass(&quot;selected&quot;);
});
$(&quot;ul&quot;).sor…</description>
    </item>
</rdf:RDF>
