<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="FeedCreator 1.8" -->
<?xml-stylesheet href="https://shiyoka.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="https://shiyoka.com/feed.php">
        <title>ClownWiki - jquery</title>
        <description></description>
        <link>https://shiyoka.com/</link>
        <image rdf:resource="https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg" />
       <dc:date>2026-05-08T13:24:41+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=jquery:search_selectbox&amp;rev=1739713984&amp;do=diff"/>
                <rdf:li rdf:resource="https://shiyoka.com/doku.php?id=jquery:sortable&amp;rev=1739713984&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg">
        <title>ClownWiki</title>
        <link>https://shiyoka.com/</link>
        <url>https://shiyoka.com/lib/exe/fetch.php?media=wiki:dokuwiki.svg</url>
    </image>
    <item rdf:about="https://shiyoka.com/doku.php?id=jquery:search_selectbox&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>search_selectbox</title>
        <link>https://shiyoka.com/doku.php?id=jquery:search_selectbox&amp;rev=1739713984&amp;do=diff</link>
        <description>セレクトボックスの絞り込み

サンプルコード


&lt;script type=&quot;text/javascript&quot;&gt;
    $(document).ready(function(){
        // セレクトボックスの初期値を取得
        var dataList = {};
        selectObject = $(&#039;#slct_id&#039;).children();
        for(i = 0; i &lt; selectObject.length; i++) {
            targetObject = selectObject.eq(i);
            dataList[targetObject.val()] = targetObject.text();
        }

        // テキストエリアが変更された時の動きを登録
        $(&#039;#searchWord&#039;).bind(&quot;change keyup&quot;, function(){
            searchString = $(this).val();

…</description>
    </item>
    <item rdf:about="https://shiyoka.com/doku.php?id=jquery:sortable&amp;rev=1739713984&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2025-02-16T13:53:04+00:00</dc:date>
        <dc:creator>Anonymous (anonymous@undisclosed.example.com)</dc:creator>
        <title>sortable</title>
        <link>https://shiyoka.com/doku.php?id=jquery:sortable&amp;rev=1739713984&amp;do=diff</link>
        <description>sortable - 並び替えられるテーブル

サンプルコード


&lt;script type=&quot;text/javascript&quot;&gt;
   var option={
       stop : function(){
           var data=[];
           $(&quot;tr td.key&quot;,&quot;#sortable tbody&quot;).each(function(i,v){
               data.push(v.innerHTML);
           });
           $(&#039;#viewSortlist&#039;).html(data.toString()).css(&quot;background-color&quot;,&quot;#eee&quot;);
       }
   };
   $(function() {
       $(&quot;#sortable tbody&quot;).sortable(option);
       $(&quot;#sortable tbody&quot;).disableSelection();
   });
&lt;/script&gt;

&lt;table id=&quot;sortable&quot;&gt;…</description>
    </item>
</rdf:RDF>
