<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>jquery ui Archives - Codeplaners</title>
	<atom:link href="https://codeplaners.com/tag/jquery-ui/feed/" rel="self" type="application/rss+xml" />
	<link>https://codeplaners.com/tag/jquery-ui/</link>
	<description>Code Solution</description>
	<lastBuildDate>Sat, 25 Sep 2021 00:22:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.7</generator>

<image>
	<url>https://codeplaners.com/wp-content/uploads/2020/09/cropped-favicon-social-32x32.png</url>
	<title>jquery ui Archives - Codeplaners</title>
	<link>https://codeplaners.com/tag/jquery-ui/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Select Option jQuery UI Example</title>
		<link>https://codeplaners.com/select-option-jquery-ui-example/</link>
					<comments>https://codeplaners.com/select-option-jquery-ui-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Sep 2021 00:22:06 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1310</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you select option jQuery ui example. This article will give you simple example of select option jQuery ui example. you will select option jQuery ui example. So let’s follow few step to create example of select option jQuery ui example. Example: I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/select-option-jquery-ui-example/">Select Option jQuery UI Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you select option jQuery ui example. This article will give you simple example of select option jQuery ui example. you will select option jQuery ui example. So let’s follow few step to create example of select option jQuery ui example.</p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
    &lt;title&gt;Select Option jQuery UI Example&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css&quot;&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.12.1/jquery-ui.js&quot;&gt;&lt;/script&gt;
    &lt;style&gt;
        label{
            display:block;
            margin:30px 0 0 0;
        }
        .overflow{
            height:200px;
        }
        .demo{
            margin: 0 auto;
            width:50%;
        }
        h2{
            text-align: center;
        }
        .demo fieldset{
            margin-top:120px;
            padding:0px 0px 50px 200px;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h2&gt;Select Option jQuery UI Example&lt;/h2&gt;
&lt;div class=&quot;demo&quot;&gt;
    &lt;form action=&quot;#&quot;&gt;
        &lt;fieldset&gt;
            &lt;label for=&quot;speed&quot;&gt;Select a speed&lt;/label&gt;
            &lt;select name=&quot;speed&quot; id=&quot;speed&quot;&gt;
                &lt;option&gt;Slower&lt;/option&gt;
                &lt;option&gt;Slow&lt;/option&gt;
                &lt;option selected=&quot;selected&quot;&gt;Medium&lt;/option&gt;
                &lt;option&gt;Fast&lt;/option&gt;
                &lt;option&gt;Faster&lt;/option&gt;
            &lt;/select&gt;
            &lt;label for=&quot;files&quot;&gt;Select a file&lt;/label&gt;
            &lt;select name=&quot;files&quot; id=&quot;files&quot;&gt;
                &lt;optgroup label=&quot;Scripts&quot;&gt;
                    &lt;option value=&quot;jquery&quot;&gt;jQuery.js&lt;/option&gt;
                    &lt;option value=&quot;jqueryui&quot;&gt;ui.jQuery.js&lt;/option&gt;
                &lt;/optgroup&gt;
                &lt;optgroup label=&quot;Other files&quot;&gt;
                    &lt;option value=&quot;somefile&quot;&gt;PHP&lt;/option&gt;
                    &lt;option value=&quot;someotherfile&quot;&gt;Laravel&lt;/option&gt;
                &lt;/optgroup&gt;
            &lt;/select&gt;
                &lt;label for=&quot;number&quot;&gt;Select a number&lt;/label&gt;
                &lt;select name=&quot;number&quot; id=&quot;number&quot;&gt;
                &lt;option selected=&quot;selected&quot;&gt;1&lt;/option&gt;
                &lt;option&gt;2&lt;/option&gt;
                &lt;option&gt;3&lt;/option&gt;
                &lt;option&gt;4&lt;/option&gt;
                &lt;option&gt;5&lt;/option&gt;
            &lt;/select&gt;
     
            &lt;label for=&quot;salutation&quot;&gt;Select a title&lt;/label&gt;
            &lt;select name=&quot;salutation&quot; id=&quot;salutation&quot;&gt;
                &lt;option disabled selected&gt;Please pick one&lt;/option&gt;
                &lt;option&gt;Mr.&lt;/option&gt;
                &lt;option&gt;Mrs.&lt;/option&gt;
                &lt;option&gt;Dr.&lt;/option&gt;
                &lt;option&gt;Prof.&lt;/option&gt;
                &lt;option&gt;Other&lt;/option&gt;
            &lt;/select&gt;
        &lt;/fieldset&gt;
    &lt;/form&gt;
&lt;/div&gt;

    &lt;script&gt;
        $(function(){
            $( &quot;#speed&quot; ).selectmenu();
            $( &quot;#files&quot; ).selectmenu();
            $( &quot;#number&quot; )
                .selectmenu()
                .selectmenu( &quot;menuWidget&quot; )
                .addClass( &quot;overflow&quot; );
            $(&quot;#salutation&quot;).selectmenu();
        });
  &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/select-option-jquery-ui-example/">Select Option jQuery UI Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/select-option-jquery-ui-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Animation Effects In JQuery UI</title>
		<link>https://codeplaners.com/animation-effects-in-jquery-ui/</link>
					<comments>https://codeplaners.com/animation-effects-in-jquery-ui/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Sep 2021 00:08:46 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1305</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you animation effects in jQuery ui. This article will give you simple example of animation effects in jQuery ui. you will animation effects in jQuery ui. So let’s follow few step to create example of animation effects in jQuery ui. Example: &#60;!doctype html&#62; &#60;html lang=&#34;en&#34;&#62; &#60;head&#62; &#60;meta charset=&#34;utf-8&#34;&#62; &#8230; <a href="https://codeplaners.com/animation-effects-in-jquery-ui/" class="more-link">Continue reading<span class="screen-reader-text"> "Animation Effects In JQuery UI"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/animation-effects-in-jquery-ui/">Animation Effects In JQuery UI</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you animation effects in jQuery ui. This article will give you simple example of animation effects in jQuery ui. you will animation effects in jQuery ui. So let’s follow few step to create example of animation effects in jQuery ui.</p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
    &lt;title&gt;Animation Effects In JQuery UI&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css&quot;&gt;
    &lt;style&gt;
        canvas{
            width:150px !important;
        }
        .graph{
            width:150px !important;
            float: left;
            margin-left: 10px;
        }
        .main-class{
            margin:-107px auto;
            transform: translate(80%,50%);
            border-radius: 5px;
            padding:30px 20px;
            border:2px solid green;
            position: absolute;
        }
    &lt;/style&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.12.1/jquery-ui.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt; 
&lt;body&gt;
	&lt;h2 style=&quot;text-align: center;&quot;&gt;Animation Effects In JQuery UI&lt;/h2&gt;
    &lt;div class=&quot;main-class&quot;&gt;
        &lt;div id=&quot;graphs&quot;&gt;&lt;/div&gt;
    &lt;/div&gt;
    &lt;script&gt;
        $( function() {
            if ( !$( &quot;&lt;canvas&gt;&quot; )&#x5B;0].getContext ) {
            $( &quot;&lt;div&gt;&quot; ).text(
                &quot;Your browser doesn't support canvas, which is required for this demo.&quot;
            ).appendTo( &quot;#graphs&quot; );
            return;
        }
     
        var i = 0,
            width = 100,
            height = 100;
     
        $.each( $.easing, function( name, impl ) {
            var graph = $( &quot;&lt;div&gt;&quot; ).addClass( &quot;graph&quot; ).appendTo( &quot;#graphs&quot; ),
            text = $( &quot;&lt;div&gt;&quot; ).text( ++i + &quot;. &quot; + name ).appendTo( graph ),
            wrap = $( &quot;&lt;div&gt;&quot; ).appendTo( graph ).css( 'overflow', 'hidden' ),
            canvas = $( &quot;&lt;canvas&gt;&quot; ).appendTo( wrap )&#x5B; 0 ];
     
            canvas.width = width;
            canvas.height = height;
            var drawHeight = height * 0.8,
            cradius = 10;
            ctx = canvas.getContext( &quot;2d&quot; );
            ctx.fillStyle = &quot;black&quot;;
     
            // Draw background
            ctx.beginPath();
            ctx.moveTo( cradius, 0 );
            ctx.quadraticCurveTo( 0, 0, 0, cradius );
            ctx.lineTo( 0, height - cradius );
            ctx.quadraticCurveTo( 0, height, cradius, height );
            ctx.lineTo( width - cradius, height );
            ctx.quadraticCurveTo( width, height, width, height - cradius );
            ctx.lineTo( width, 0 );
            ctx.lineTo( cradius, 0 );
            ctx.fill();
     
            // Draw bottom line
            ctx.strokeStyle = &quot;#555&quot;;
            ctx.beginPath();
            ctx.moveTo( width * 0.1, drawHeight + .5 );
            ctx.lineTo( width * 0.9, drawHeight + .5 );
            ctx.stroke();
     
            // Draw top line
            ctx.strokeStyle = &quot;#555&quot;;
            ctx.beginPath();
            ctx.moveTo( width * 0.1, drawHeight * .3 - .5 );
            ctx.lineTo( width * 0.9, drawHeight * .3 - .5 );
            ctx.stroke();
     
            // Plot easing
            ctx.strokeStyle = &quot;white&quot;;
            ctx.beginPath();
            ctx.lineWidth = 2;
            ctx.moveTo( width * 0.1, drawHeight );
            $.each( new Array( width ), function( position ) {
                var state = position / width,
                 val = impl( state, position, 0, 1, width );
                ctx.lineTo( position * 0.8 + width * 0.1,
                drawHeight - drawHeight * val * 0.7 );
            });
            ctx.stroke();
     
            // Animate on click
            graph.on( &quot;click&quot;, function() {
            wrap
              .animate( { height: &quot;hide&quot; }, 2000, name )
              .delay( 800 )
              .animate( { height: &quot;show&quot; }, 2000, name );
          });
     
            graph.width( width ).height( height + text.height() + 10 );
            });
        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/animation-effects-in-jquery-ui/">Animation Effects In JQuery UI</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/animation-effects-in-jquery-ui/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Input Allow Only Number In Jquery</title>
		<link>https://codeplaners.com/input-allow-only-number-in-jquery/</link>
					<comments>https://codeplaners.com/input-allow-only-number-in-jquery/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 25 Sep 2021 00:00:22 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1301</guid>

					<description><![CDATA[<p>Hi Dev, Today, i we will show you input allow only number in jquery. This article will give you simple example of input allow only number in jquery. you will input allow only number in jquery. So let’s follow few step to create example of input allow only number in jquery. Example: &#60;!DOCTYPE html&#62; &#60;html&#62; &#8230; <a href="https://codeplaners.com/input-allow-only-number-in-jquery/" class="more-link">Continue reading<span class="screen-reader-text"> "Input Allow Only Number In Jquery"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/input-allow-only-number-in-jquery/">Input Allow Only Number In Jquery</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi Dev,</p>
<p>Today, i we will show you input allow only number in jquery. This article will give you simple example of input allow only number in jquery. you will input allow only number in jquery. So let’s follow few step to create example of input allow only number in jquery.</p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
&lt;html&gt;
&lt;head&gt;
    &lt;title&gt;Input Allow Only Number In Jquery&lt;/title&gt;
    &lt;script src = &quot;https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;
  
&lt;div class=&quot;container&quot;&gt;
    &lt;h1&gt;Input Allow Only Number In Jquery&lt;/h1&gt;
    &lt;input type=&quot;text&quot; name=&quot;number&quot; class=&quot;number&quot; autocomplete=&quot;off&quot;&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
    $('.number').keypress(function(event) {
      if ((event.which != 46 || $(this).val().indexOf('.') != -1) &amp;&amp; (event.which &lt; 48 || event.which &gt; 57)) {
        event.preventDefault();
      }
    });
&lt;/script&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/input-allow-only-number-in-jquery/">Input Allow Only Number In Jquery</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/input-allow-only-number-in-jquery/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Modal Form JQuery UI Dialog Example</title>
		<link>https://codeplaners.com/modal-form-jquery-ui-dialog-example/</link>
					<comments>https://codeplaners.com/modal-form-jquery-ui-dialog-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Wed, 18 Aug 2021 10:22:54 +0000</pubDate>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1252</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you modal form jQuery ui dialog example. This article will give you simple example of modal form jQuery ui dialog example. you will learn modal form jQuery ui dialog example. So let’s follow few step to create example of modal form jQuery ui dialog example. Example : &#60;!doctype html&#62; &#8230; <a href="https://codeplaners.com/modal-form-jquery-ui-dialog-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Modal Form JQuery UI Dialog Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/modal-form-jquery-ui-dialog-example/">Modal Form JQuery UI Dialog Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you modal form jQuery ui dialog example. This article will give you simple example of modal form jQuery ui dialog example. you will learn modal form jQuery ui dialog example. So let’s follow few step to create example of modal form jQuery ui dialog example.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="Modal Form JQuery UI Dialog Example" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/modal-form.png"></p>
<h3 class="step_code">Example :</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
    &lt;title&gt;Modal Form JQuery UI Dialog Example&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css&quot;&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.12.1/jquery-ui.js&quot;&gt;&lt;/script&gt;
    &lt;style&gt;
        .container{
            margin:0 auto;
            text-align:center;
            border:1px solid #000;
            width:500px;
            padding:40px 20px;
         }
        label, input{
            display:block;
        }
        input.text {
            margin-bottom:12px;
            width:95%;
            padding: .4em;
        }
        fieldset {
            padding:0; 
            border:0; 
            margin-top:25px;
        }
        h1 {font-size: 1.2em; 
            margin: .6em 0;
        }
        div#users-contain {
            width: 400px; 
            margin: 20px auto;
        }
        div#users-contain table { 
            margin: 1em 0; 
            border-collapse: collapse; 
            width: 100%;
        }
        div#users-contain table td, div#users-contain table th { 
            border: 1px solid #eee; 
            padding: .6em 10px; 
            text-align: left; }
        .ui-dialog .ui-state-error { 
            padding: .3em; 
        }
        .validateTips { 
            border: 1px solid transparent; 
            padding: 0.3em; 
        }
        h2{
            text-align: center;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
    &lt;h2&gt;Modal Form JQuery UI Dialog Example&lt;/h2&gt;
    &lt;div class=&quot;container&quot;&gt;
        &lt;div id=&quot;users-contain&quot; class=&quot;ui-widget&quot;&gt;
            &lt;h1&gt;Existing Users:&lt;/h1&gt;
            &lt;table id=&quot;users&quot; class=&quot;ui-widget ui-widget-content&quot;&gt;
                &lt;thead&gt;
                    &lt;tr class=&quot;ui-widget-header &quot;&gt;
                        &lt;th&gt;Name&lt;/th&gt;
                        &lt;th&gt;Email&lt;/th&gt;
                        &lt;th&gt;Password&lt;/th&gt;
                    &lt;/tr&gt;
                &lt;/thead&gt;
                &lt;tbody&gt;
                    &lt;tr&gt;
                        &lt;td&gt;John Doe&lt;/td&gt;
                        &lt;td&gt;john.doe@example.com&lt;/td&gt;
                        &lt;td&gt;johndoe1&lt;/td&gt;
                    &lt;/tr&gt;
                &lt;/tbody&gt;
            &lt;/table&gt;
        &lt;/div&gt;
        &lt;div id=&quot;dialog-form&quot; title=&quot;Create new user&quot;&gt;
            &lt;p class=&quot;validateTips&quot;&gt;All form fields are required.&lt;/p&gt;
            &lt;form&gt;
                &lt;fieldset&gt;
                    &lt;label for=&quot;name&quot;&gt;Name&lt;/label&gt;
                    &lt;input type=&quot;text&quot; name=&quot;name&quot; id=&quot;name&quot; value=&quot;Jane Smith&quot; class=&quot;text ui-widget-content ui-corner-all&quot;&gt;
                    &lt;label for=&quot;email&quot;&gt;Email&lt;/label&gt;
                    &lt;input type=&quot;text&quot; name=&quot;email&quot; id=&quot;email&quot; value=&quot;jane@smith.com&quot; class=&quot;text ui-widget-content ui-corner-all&quot;&gt;
                    &lt;label for=&quot;password&quot;&gt;Password&lt;/label&gt;
                    &lt;input type=&quot;password&quot; name=&quot;password&quot; id=&quot;password&quot; value=&quot;xxxxxxx&quot; class=&quot;text ui-widget-content ui-corner-all&quot;&gt;
                    &lt;input type=&quot;submit&quot; tabindex=&quot;-1&quot; style=&quot;position:absolute; top:-1000px&quot;&gt;
                &lt;/fieldset&gt;
            &lt;/form&gt;
        &lt;/div&gt;
        &lt;button id=&quot;create-user&quot;&gt;Create new user&lt;/button&gt;
    &lt;/div&gt;

    &lt;script type=&quot;text/javascript&quot;&gt;
    $( function(){
            var dialog, form,
                // From http://www.whatwg.org/specs/web-apps/current-work/multipage/states-of-the-type-attribute.html#e-mail-state-%28type=email%29
                emailRegex = /^&#x5B;a-zA-Z0-9.!#$%&amp;'*+\/=?^_`{|}~-]+@&#x5B;a-zA-Z0-9](?:&#x5B;a-zA-Z0-9-]{0,61}&#x5B;a-zA-Z0-9])?(?:\.&#x5B;a-zA-Z0-9](?:&#x5B;a-zA-Z0-9-]{0,61}&#x5B;a-zA-Z0-9])?)*$/,
                name = $( &quot;#name&quot; ),
                email = $( &quot;#email&quot; ),
                password = $( &quot;#password&quot; ),
                allFields = $( &#x5B;] ).add( name ).add( email ).add( password ),
                tips = $( &quot;.validateTips&quot; );
                function updateTips( t ) {
                    tips
                    .text( t )
                    .addClass( &quot;ui-state-highlight&quot; );
                        setTimeout(function() {
                        tips.removeClass( &quot;ui-state-highlight&quot;, 1500 );
                    }, 500 );
                }
         
                function checkLength( o, n, min, max ) {
                    if ( o.val().length &gt; max || o.val().length &lt; min ) {
                        o.addClass( &quot;ui-state-error&quot; );
                        updateTips( &quot;Length of &quot; + n + &quot; must be between &quot; +
                          min + &quot; and &quot; + max + &quot;.&quot; );
                        return false;
                    }else{
                        return true;
                    }
                }
         
                function checkRegexp( o, regexp, n ) {
                    if(!( regexp.test( o.val() ) ) ) {
                        o.addClass( &quot;ui-state-error&quot; );
                        updateTips( n );
                    return false;
                    }else{
                        return true;
                    }
                }
         
                function addUser() {
                    var valid = true;
                    allFields.removeClass( &quot;ui-state-error&quot; );
             
                    valid = valid &amp;&amp; checkLength( name, &quot;username&quot;, 3, 16 );
                    valid = valid &amp;&amp; checkLength( email, &quot;email&quot;, 6, 80 );
                    valid = valid &amp;&amp; checkLength( password, &quot;password&quot;, 5, 16 );
             
                    valid = valid &amp;&amp; checkRegexp( name, /^&#x5B;a-z](&#x5B;0-9a-z_\s])+$/i, &quot;Username may consist of a-z, 0-9, underscores, spaces and must begin with a letter.&quot; );
                    valid = valid &amp;&amp; checkRegexp( email, emailRegex, &quot;eg. ui@jquery.com&quot; );
                    valid = valid &amp;&amp; checkRegexp( password, /^(&#x5B;0-9a-zA-Z])+$/, &quot;Password field only allow : a-z 0-9&quot; );
             
                    if(valid){
                            $( &quot;#users tbody&quot; ).append( &quot;&lt;tr&gt;&quot; +
                            &quot;&lt;td&gt;&quot; + name.val() + &quot;&lt;/td&gt;&quot; +
                            &quot;&lt;td&gt;&quot; + email.val() + &quot;&lt;/td&gt;&quot; +
                            &quot;&lt;td&gt;&quot; + password.val() + &quot;&lt;/td&gt;&quot; +
                            &quot;&lt;/tr&gt;&quot; );
                        dialog.dialog( &quot;close&quot; );
                    }
                    return valid;
                }
         
                dialog = $( &quot;#dialog-form&quot; ).dialog({
                    autoOpen: false,
                    height: 400,
                    width: 350,
                    modal: true,
                    buttons: {
                    &quot;Create an account&quot;: addUser,
                    Cancel: function() {
                        dialog.dialog( &quot;close&quot; );
                    }
              },
                close: function() {
                    form&#x5B; 0 ].reset();
                    allFields.removeClass( &quot;ui-state-error&quot; );
                }
            });
         
            form = dialog.find( &quot;form&quot; ).on( &quot;submit&quot;, function( event ) {
                event.preventDefault();
                addUser();
            });
         
            $( &quot;#create-user&quot; ).button().on( &quot;click&quot;, function() {
                dialog.dialog( &quot;open&quot; );
            });
        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;	
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/modal-form-jquery-ui-dialog-example/">Modal Form JQuery UI Dialog Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/modal-form-jquery-ui-dialog-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How To Create Select Option Menu In Jquery Ui</title>
		<link>https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/</link>
					<comments>https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 14 Aug 2021 23:49:11 +0000</pubDate>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1222</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you how to create select option menu in jquery ui. This article will give you simple example of how to create select option menu in jquery ui. you will learn how to create select option menu in jquery ui. So let’s follow few step to create example of how &#8230; <a href="https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/" class="more-link">Continue reading<span class="screen-reader-text"> "How To Create Select Option Menu In Jquery Ui"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/">How To Create Select Option Menu In Jquery Ui</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you how to create select option menu in jquery ui. This article will give you simple example of how to create select option menu in jquery ui. you will learn how to create select option menu in jquery ui. So let’s follow few step to create example of how to create select option menu in jquery ui.</p>
<p><img decoding="async" style="border: 3px solid #ff5722;" alt="How To Create Select Option Menu In Jquery Ui" class="lazyloaded" src="https://codeplaners.com/wp-content/uploads/2021/08/select-option-menu.png"></p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;meta charset=&quot;utf-8&quot;&gt;
    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
    &lt;title&gt;How To Create Select Option Menu In Jquery Ui&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css&quot;&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.12.1/jquery-ui.js&quot;&gt;&lt;/script&gt;
    &lt;style&gt;
        label{
            display:block;
            margin:30px 0 0 0;
        }
        .overflow{
            height:200px;
        }
        .demo{
            margin: 0 auto;
            width:50%;
        }
        h2{
            text-align: center;
        }
        .demo fieldset{
            margin-top:0;
            padding:0px 0px 50px 200px;
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;h2&gt;How To Create Select Option Menu In Jquery Ui&lt;/h2&gt;
&lt;div class=&quot;demo&quot;&gt;
    &lt;form action=&quot;#&quot;&gt;
        &lt;fieldset&gt;
            &lt;label for=&quot;speed&quot;&gt;Select a speed&lt;/label&gt;
            &lt;select name=&quot;speed&quot; id=&quot;speed&quot;&gt;
                &lt;option&gt;Slower&lt;/option&gt;
                &lt;option&gt;Slow&lt;/option&gt;
                &lt;option selected=&quot;selected&quot;&gt;Medium&lt;/option&gt;
                &lt;option&gt;Fast&lt;/option&gt;
                &lt;option&gt;Faster&lt;/option&gt;
            &lt;/select&gt;
            &lt;label for=&quot;files&quot;&gt;Select a file&lt;/label&gt;
            &lt;select name=&quot;files&quot; id=&quot;files&quot;&gt;
                &lt;optgroup label=&quot;Scripts&quot;&gt;
                    &lt;option value=&quot;jquery&quot;&gt;jQuery.js&lt;/option&gt;
                    &lt;option value=&quot;jqueryui&quot;&gt;ui.jQuery.js&lt;/option&gt;
                &lt;/optgroup&gt;
                &lt;optgroup label=&quot;Other files&quot;&gt;
                    &lt;option value=&quot;somefile&quot;&gt;PHP&lt;/option&gt;
                    &lt;option value=&quot;someotherfile&quot;&gt;Laravel&lt;/option&gt;
                &lt;/optgroup&gt;
            &lt;/select&gt;
                &lt;label for=&quot;number&quot;&gt;Select a number&lt;/label&gt;
                &lt;select name=&quot;number&quot; id=&quot;number&quot;&gt;
                &lt;option selected=&quot;selected&quot;&gt;1&lt;/option&gt;
                &lt;option&gt;2&lt;/option&gt;
                &lt;option&gt;3&lt;/option&gt;
                &lt;option&gt;4&lt;/option&gt;
                &lt;option&gt;5&lt;/option&gt;
            &lt;/select&gt;
     
            &lt;label for=&quot;salutation&quot;&gt;Select a title&lt;/label&gt;
            &lt;select name=&quot;salutation&quot; id=&quot;salutation&quot;&gt;
                &lt;option disabled selected&gt;Please pick one&lt;/option&gt;
                &lt;option&gt;Mr.&lt;/option&gt;
                &lt;option&gt;Mrs.&lt;/option&gt;
                &lt;option&gt;Dr.&lt;/option&gt;
                &lt;option&gt;Prof.&lt;/option&gt;
                &lt;option&gt;Other&lt;/option&gt;
            &lt;/select&gt;
        &lt;/fieldset&gt;
    &lt;/form&gt;
&lt;/div&gt;

    &lt;script&gt;
        $(function(){
            $( &quot;#speed&quot; ).selectmenu();
            $( &quot;#files&quot; ).selectmenu();
            $( &quot;#number&quot; )
                .selectmenu()
                .selectmenu( &quot;menuWidget&quot; )
                .addClass( &quot;overflow&quot; );
            $(&quot;#salutation&quot;).selectmenu();
        });
  &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/">How To Create Select Option Menu In Jquery Ui</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/how-to-create-select-option-menu-in-jquery-ui/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Jquery Ui Tabs Event Example</title>
		<link>https://codeplaners.com/jquery-ui-tabs-event-example/</link>
					<comments>https://codeplaners.com/jquery-ui-tabs-event-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Sat, 14 Aug 2021 23:34:12 +0000</pubDate>
				<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=1219</guid>

					<description><![CDATA[<p>Hi, Today, i we will show you jquery ui tabs event example. This article will give you simple example of jquery ui tabs event example. you will learn jquery ui tabs event example. So let’s follow few step to create example of jquery ui tabs event example. Example: &#60;!DOCTYPE html&#62; &#60;html&#62; &#60;head&#62; &#60;title&#62;jquery ui tabs &#8230; <a href="https://codeplaners.com/jquery-ui-tabs-event-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Jquery Ui Tabs Event Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-ui-tabs-event-example/">Jquery Ui Tabs Event Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hi,</p>
<p>Today, i we will show you jquery ui tabs event example. This article will give you simple example of jquery ui tabs event example. you will learn jquery ui tabs event example. So let’s follow few step to create example of jquery ui tabs event example. </p>
<h3 class="step_code">Example:</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;!DOCTYPE html&gt;
	&lt;html&gt;
    &lt;head&gt;
        &lt;title&gt;jquery ui tabs event example&lt;/title&gt;
    &lt;/head&gt;
      &lt;meta charset=&quot;utf-8&quot;&gt;
      &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot;&gt;
      &lt;link rel=&quot;stylesheet&quot; href=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/css/bootstrap.min.css&quot;&gt;
      &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js&quot;&gt;&lt;/script&gt;
      &lt;script src=&quot;https://maxcdn.bootstrapcdn.com/bootstrap/3.4.1/js/bootstrap.min.js&quot;&gt;&lt;/script&gt;
&lt;body&gt;
&lt;div class=&quot;container&quot;&gt;
	&lt;h1&gt;jquery ui tabs event example&lt;/h1&gt;&lt;br&gt;
  	&lt;ul class=&quot;nav nav-tabs&quot;&gt;
	    &lt;li class=&quot;active&quot;&gt;&lt;a data-toggle=&quot;tab&quot; href=&quot;#home&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
	    &lt;li&gt;&lt;a data-toggle=&quot;tab&quot; href=&quot;#menu1&quot;&gt;Menu 1&lt;/a&gt;&lt;/li&gt;
	    &lt;li&gt;&lt;a data-toggle=&quot;tab&quot; href=&quot;#menu2&quot;&gt;Menu 2&lt;/a&gt;&lt;/li&gt;
	    &lt;li&gt;&lt;a data-toggle=&quot;tab&quot; href=&quot;#menu3&quot;&gt;Menu 3&lt;/a&gt;&lt;/li&gt;
  	&lt;/ul&gt;
  	&lt;div class=&quot;tab-content&quot;&gt;
	    &lt;div id=&quot;home&quot; class=&quot;tab-pane fade in active&quot;&gt;
		      &lt;h3&gt;HOME&lt;/h3&gt;
		      &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.&lt;/p&gt;
	    &lt;/div&gt;
    	&lt;div id=&quot;menu1&quot; class=&quot;tab-pane fade&quot;&gt;
      		&lt;h3&gt;Menu 1&lt;/h3&gt;
      		&lt;p&gt;Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.&lt;/p&gt;
    	&lt;/div&gt;
    	&lt;div id=&quot;menu2&quot; class=&quot;tab-pane fade&quot;&gt;
      		&lt;h3&gt;Menu 2&lt;/h3&gt;
      		&lt;p&gt;Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam.&lt;/p&gt;
    	&lt;/div&gt;
    	&lt;div id=&quot;menu3&quot; class=&quot;tab-pane fade&quot;&gt;
      		&lt;h3&gt;Menu 3&lt;/h3&gt;
      		&lt;p&gt;Eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.&lt;/p&gt;
    	&lt;/div&gt;
  	&lt;/div&gt;
&lt;/div&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
	$('.nav li a').click(function(){
		var data = $(this).attr(&quot;href&quot;);
		console.log(data);
	});
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>I hope it will assist you…</p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-ui-tabs-event-example/">Jquery Ui Tabs Event Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/jquery-ui-tabs-event-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Jquery Modal Popup Example</title>
		<link>https://codeplaners.com/jquery-modal-popup-example/</link>
					<comments>https://codeplaners.com/jquery-modal-popup-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Fri, 21 May 2021 00:13:01 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=801</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you jquery ui modal popup example. This article will give you simple example of jquery ui modal popup example. you will learn jquery ui modal popup example. So let&#8217;s follow few step to create example of jquery ui modal popup example. Example:- &#60;html lang=&#34;en&#34;&#62; &#60;head&#62; &#60;title&#62;jquery modal popup &#8230; <a href="https://codeplaners.com/jquery-modal-popup-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Jquery Modal Popup Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-modal-popup-example/">Jquery Modal Popup Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello Dev,</p>
<p>Today, i we will show you jquery ui modal popup example. This article will give you simple example of jquery ui modal popup example. you will learn jquery ui modal popup example. So let&#8217;s follow few step to create example of jquery ui modal popup example.</p>
<p><strong>Example:-</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;title&gt;jquery modal popup Example&lt;/title&gt;  
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css&quot;&gt;
    &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.11.4/jquery-ui.js&quot;&gt;&lt;/script&gt;
    &lt;style type=&quot;text/css&quot;&gt;
    #dialog{
        display: none;
    }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;

&lt;button&gt;Click To Open Popup&lt;/button&gt;

&lt;div id=&quot;dialog&quot; title=&quot;Codeplaners.com&quot;&gt;
  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod
  tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam,
  quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo
  consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse
  cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non
  proident, sunt in culpa qui officia deserunt mollit anim id est laborum.&lt;/p&gt;
&lt;/div&gt;

&lt;script type=&quot;text/javascript&quot;&gt;
    $(&quot;button&quot;).click(function(){
        $( &quot;#dialog&quot; ).dialog();
    });
&lt;/script&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-modal-popup-example/">Jquery Modal Popup Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/jquery-modal-popup-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Drag And Drop Sortable Table Rows Example</title>
		<link>https://codeplaners.com/drag-and-drop-sortable-table-rows-example/</link>
					<comments>https://codeplaners.com/drag-and-drop-sortable-table-rows-example/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 20 May 2021 23:59:37 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=798</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you drag and drop dortable table rows example. This article will give you simple example of drag and drop dortable table rows example. you will learn drag and drop dortable table rows example. So let&#8217;s follow few step to create example of drag and drop dortable table rows &#8230; <a href="https://codeplaners.com/drag-and-drop-sortable-table-rows-example/" class="more-link">Continue reading<span class="screen-reader-text"> "Drag And Drop Sortable Table Rows Example"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/drag-and-drop-sortable-table-rows-example/">Drag And Drop Sortable Table Rows Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello Dev,</p>
<p>Today, i we will show you drag and drop dortable table rows example. This article will give you simple example of drag and drop dortable table rows example. you will learn drag and drop dortable table rows example. So let&#8217;s follow few step to create example of drag and drop dortable table rows example.</p>
<p><strong>Example:-</strong></p>
<pre class="brush: xml; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;title&gt;Jquery - Drag And Drop Sortable Table Rows Example&lt;/title&gt;
    &lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js&quot;&gt;&lt;/script&gt; 
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js&quot;&gt;&lt;/script&gt; 
    &lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.css&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.css&quot; rel=&quot;stylesheet&quot;&gt;   
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;container text-center&quot;&gt;
     &lt;h2&gt;Drag And Drop Sortable Table Rows Example&lt;/h2&gt;
     &lt;table class=&quot;table table-bordered pagin-table&quot;&gt;
        &lt;thead&gt;
            &lt;tr&gt;
                &lt;th width=&quot;50px&quot;&gt;No&lt;/th&gt;
                &lt;th&gt;Name&lt;/th&gt;
                &lt;th width=&quot;220px&quot;&gt;Action&lt;/th&gt;
            &lt;/tr&gt;
        &lt;/thead&gt;
        &lt;tbody&gt;
            &lt;tr&gt;
              &lt;td&gt;1&lt;/td&gt;
              &lt;td&gt;Code Planers&lt;/td&gt;
              &lt;td&gt;&lt;a href=&quot;&quot; class=&quot;btn btn-danger&quot;&gt;Delete&lt;/a&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td&gt;2&lt;/td&gt;
              &lt;td&gt;Code Planers&lt;/td&gt;
              &lt;td&gt;&lt;a href=&quot;&quot; class=&quot;btn btn-danger&quot;&gt;Delete&lt;/a&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td&gt;3&lt;/td&gt;
              &lt;td&gt;Code Planers&lt;/td&gt;
              &lt;td&gt;&lt;a href=&quot;&quot; class=&quot;btn btn-danger&quot;&gt;Delete&lt;/a&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td&gt;4&lt;/td&gt;
              &lt;td&gt;Code Planers&lt;/td&gt;
              &lt;td&gt;&lt;a href=&quot;&quot; class=&quot;btn btn-danger&quot;&gt;Delete&lt;/a&gt;&lt;/td&gt;
            &lt;/tr&gt;
            &lt;tr&gt;
              &lt;td&gt;5&lt;/td&gt;
              &lt;td&gt;Code Planers&lt;/td&gt;
              &lt;td&gt;&lt;a href=&quot;&quot; class=&quot;btn btn-danger&quot;&gt;Delete&lt;/a&gt;&lt;/td&gt;
            &lt;/tr&gt;
        &lt;/tbody&gt;
    &lt;/table&gt;
&lt;/div&gt;	
&lt;script type=&quot;text/javascript&quot;&gt;
  $('tbody').sortable();
&lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/drag-and-drop-sortable-table-rows-example/">Drag And Drop Sortable Table Rows Example</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/drag-and-drop-sortable-table-rows-example/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Datepicker Example in jquery ui</title>
		<link>https://codeplaners.com/datepicker-example-in-jquery-ui/</link>
					<comments>https://codeplaners.com/datepicker-example-in-jquery-ui/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 20 May 2021 23:49:36 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=795</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you Datepicker Example in jquery ui. This article will give you simple example of Datepicker Example in jquery ui. you will learn Datepicker Example in jquery ui. So let&#8217;s follow few step to create example of Datepicker Example in jquery ui. &#60;html lang=&#34;en&#34;&#62; &#60;head&#62; &#60;title&#62;Datepicker Example in jquery &#8230; <a href="https://codeplaners.com/datepicker-example-in-jquery-ui/" class="more-link">Continue reading<span class="screen-reader-text"> "Datepicker Example in jquery ui"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/datepicker-example-in-jquery-ui/">Datepicker Example in jquery ui</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello Dev,</p>
<p>Today, i we will show you Datepicker Example in jquery ui. This article will give you simple example of Datepicker Example in jquery ui. you will learn Datepicker Example in jquery ui. So let&#8217;s follow few step to create example of Datepicker Example in jquery ui.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;title&gt;Datepicker Example in jquery ui&lt;/title&gt;
    &lt;script src=&quot;https://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js&quot;&gt;&lt;/script&gt; 
    &lt;script src=&quot;https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js&quot;&gt;&lt;/script&gt; 
    &lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.css&quot; rel=&quot;stylesheet&quot;&gt;
    &lt;link href=&quot;https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.css&quot; rel=&quot;stylesheet&quot;&gt;   
&lt;/head&gt;
&lt;body&gt;

&lt;div class=&quot;container text-center&quot;&gt;
     &lt;h2&gt;Datepicker Example in jquery ui&lt;/h2&gt;
     &lt;strong&gt;Select Date:&lt;/strong&gt; &lt;input type=&quot;text&quot; id=&quot;datepicker&quot; class=&quot;from-control&quot;&gt;
&lt;/div&gt;	

&lt;script type=&quot;text/javascript&quot;&gt;
    $( &quot;#datepicker&quot; ).datepicker();
&lt;/script&gt;


&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/datepicker-example-in-jquery-ui/">Datepicker Example in jquery ui</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/datepicker-example-in-jquery-ui/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Jquery ui tooltip example with Demo</title>
		<link>https://codeplaners.com/jquery-ui-tooltip-example-with-demo/</link>
					<comments>https://codeplaners.com/jquery-ui-tooltip-example-with-demo/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 20 May 2021 23:35:02 +0000</pubDate>
				<category><![CDATA[HTML&CSS]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Jquery Ui]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery ui]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[Source Code]]></category>
		<guid isPermaLink="false">https://codeplaners.com/?p=788</guid>

					<description><![CDATA[<p>Hello Dev, Today, i we will show you Jquery ui tooltip example with Demo. This article will give you simple example of Jquery ui tooltip example with Demo. you will learn Jquery ui tooltip example with Demo. So let&#8217;s follow few step to create example of Jquery ui tooltip example with Demo. &#60;html lang=&#34;en&#34;&#62; &#60;head&#62; &#8230; <a href="https://codeplaners.com/jquery-ui-tooltip-example-with-demo/" class="more-link">Continue reading<span class="screen-reader-text"> "Jquery ui tooltip example with Demo"</span></a></p>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-ui-tooltip-example-with-demo/">Jquery ui tooltip example with Demo</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Hello Dev,</p>
<p>Today, i we will show you Jquery ui tooltip example with Demo. This article will give you simple example of Jquery ui tooltip example with Demo. you will learn Jquery ui tooltip example with Demo. So let&#8217;s follow few step to create example of Jquery ui tooltip example with Demo.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
    &lt;title&gt;Jquery ui tooltip example with Demo - codeplaners&lt;/title&gt;
    &lt;link rel=&quot;stylesheet&quot; href=&quot;https://code.jquery.com/ui/1.12.0/themes/base/jquery-ui.css&quot;&gt;
    &lt;script src=&quot;https://code.jquery.com/jquery-1.12.4.js&quot;&gt;&lt;/script&gt;
    &lt;script src=&quot;https://code.jquery.com/ui/1.12.0/jquery-ui.js&quot;&gt;&lt;/script&gt;
&lt;/head&gt;
&lt;body&gt;


&lt;div class=&quot;container&quot;&gt;
  &lt;button title=&quot;Jquery UI Tooltip Example&quot;&gt;See Toltip&lt;/button&gt;
  &lt;script type=&quot;text/javascript&quot;&gt;
      $( function() {
        $( document ).tooltip();
      } );
  &lt;/script&gt;
&lt;/div&gt;

&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The post <a rel="nofollow" href="https://codeplaners.com/jquery-ui-tooltip-example-with-demo/">Jquery ui tooltip example with Demo</a> appeared first on <a rel="nofollow" href="https://codeplaners.com">Codeplaners</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://codeplaners.com/jquery-ui-tooltip-example-with-demo/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
