<?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>D Ness Car Key</title>
	<atom:link href="http://dineshkarki.com.np/feed" rel="self" type="application/rss+xml" />
	<link>http://dineshkarki.com.np</link>
	<description></description>
	<lastBuildDate>Tue, 03 Apr 2012 13:26:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<meta xmlns="http://www.w3.org/1999/xhtml" name="robots" content="noindex,follow" />
		<item>
		<title>Easy way to Create Jquery Tabs</title>
		<link>http://dineshkarki.com.np/easy-way-to-create-jquery-tabs.html</link>
		<comments>http://dineshkarki.com.np/easy-way-to-create-jquery-tabs.html#comments</comments>
		<pubDate>Sun, 10 Apr 2011 04:31:03 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[tabs]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=25</guid>
		<description><![CDATA[Step 1: Include Jquery &#60;script src="{PATH TO JQUERY}/jquery.js'; ?" type="text/javascript"&#62;&#60;!--mce:0--&#62;&#60;/script&#62; Step 2: Creating Tab &#60;ul class="tabs"&#62; &#60;li&#62;&#60;a href="#tab1"&#62;TAB 1&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#tab2"&#62;TAB 2&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#tab3"&#62;TAB 3&#60;/a&#62;&#60;/li&#62; &#60;/ul&#62; &#60;div class="tab_container"&#62; &#60;div id="tab1" class="tab_content"&#62; Tab1 Content Here &#60;!-- TAB1 CONTAIN HERE --&#62;&#60;/div&#62;&#60;!-- EOF &#8230;<p class="read-more"><a href="http://dineshkarki.com.np/easy-way-to-create-jquery-tabs.html">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Step 1: Include Jquery</strong></p>
<pre><code>&lt;script src="{PATH TO JQUERY}/jquery.js'; ?" type="text/javascript"&gt;&lt;!--mce:0--&gt;&lt;/script&gt;</code></pre>
<p><strong>Step 2: Creating Tab</strong></p>
<pre><code>
&lt;ul class="tabs"&gt;
&lt;li&gt;&lt;a href="#tab1"&gt;TAB 1&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#tab2"&gt;TAB 2&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="#tab3"&gt;TAB 3&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="tab_container"&gt;

&lt;div id="tab1" class="tab_content"&gt;
Tab1 Content Here
&lt;!-- TAB1 CONTAIN HERE --&gt;&lt;/div&gt;&lt;!-- EOF TAB1--&gt;

&lt;div id="tab2" class="tab_content"&gt;
Tab2 Content Here
&lt;!-- TAB2 CONTAIN HERE --&gt;
&lt;/div&gt;&lt;!-- EOF TAB2--&gt;

&lt;div id="tab3" class="tab_content"&gt;
Tab3 Content Here
&lt;!-- TAB3 CONTAIN HERE --&gt;
&lt;/div&gt;&lt;!-- EOF TAB3--&gt;

&lt;/div&gt; &lt;!-- EOF TAB CONTAINER --&gt;
</code></pre>
<p><strong>Step 3: Make It Work</strong></p>
<pre><code>
$(document).ready(function() {
//When page loads...
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content

//On Click Event
$("ul.tabs li").click(function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content

var activeTab = $(this).find("a").attr("href"); //Find the href attribute value to identify the active tab + content
activeTab = activeTab.split("#");
$("#"+activeTab[1]).fadeIn(); //Fade in the active ID content

return false;
});
});
</code></pre>
<p><strong>Step 4: Adding Beauty</strong></p>
<pre><code>&lt;style&gt;
ul.tabs {margin: 0;padding: 0;float: left;list-style: none;margin-top:30px;border-bottom:1px solid #e9e9e9;}
ul.tabs li {float: left;margin: 0;padding: 0;height: 28px;width:135px;margin-bottom: -1px; overflow: hidden;position: relative;background: #5D99A3;font-family: arial;font-size:11px;margin-right:5px;text-align:center;}
ul.tabs li a {text-decoration: none;color: #fff;display: block;padding-top:9px;outline: none;}
ul.tabs li:hover {background:#ece6d3;color:#454545;<span style="font-family: monospace;">}
ul.tabs li.active, ul.tabs li.active a:hover  {background:#ece6d3;color:#454545;}
.tabs li.active a{color:#454545;}
.tab_container {border-top: none;overflow: hidden;clear: both;float: left;height: 533px;width: 470px;background: #ece6d3;margin:0 auto;border:1px solid #e9e9e9;border-top:0px;color:#454545;}
&lt;/style&gt;</span></code></pre>
<p><strong>Demo</strong><br />
Click <a title="Demo to Jquery Tab" href="http://dineshkarki.com.np/demos/tabs" target="_blank">here</a> for the demo.</p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/easy-way-to-create-jquery-tabs.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Create Submenu with jquery and css</title>
		<link>http://dineshkarki.com.np/create-submenu-with-jquery-and-css.html</link>
		<comments>http://dineshkarki.com.np/create-submenu-with-jquery-and-css.html#comments</comments>
		<pubDate>Wed, 13 Apr 2011 03:31:10 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Jquery]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[submenu]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=38</guid>
		<description><![CDATA[Including Jquery &#60;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&#62;&#60;/script&#62; Structure &#60;ul id="menu-main-menu"&#62; &#60;li&#62;&#60;a href="#"&#62;Home&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#"&#62;About Us&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#"&#62;Services&#60;/a&#62; &#60;!-- SUBMENU --&#62; &#60;ul style="display: none;"&#62; &#60;li&#62;&#60;a href="#"&#62;Live IT Support&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#"&#62;On Site Support&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#"&#62;Managed Email&#60;/a&#62;&#60;/li&#62; &#60;li&#62;&#60;a href="#"&#62;Backup and Disaster Recovery&#60;/a&#62;&#60;/li&#62; &#60;/ul&#62; &#60;!-- EOF &#8230;<p class="read-more"><a href="http://dineshkarki.com.np/create-submenu-with-jquery-and-css.html">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p><strong>Including Jquery</strong></p>
<pre><code>
&lt;script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js"&gt;&lt;/script&gt;
</code></pre>
<p><strong>Structure</strong></p>
<pre><code>
&lt;ul id="menu-main-menu"&gt;
  &lt;li&gt;&lt;a href="#"&gt;Home&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;About Us&lt;/a&gt;&lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Services&lt;/a&gt;
   &lt;!-- SUBMENU --&gt;
    &lt;ul style="display: none;"&gt;
      &lt;li&gt;&lt;a href="#"&gt;Live IT Support&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href="#"&gt;On Site Support&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href="#"&gt;Managed Email&lt;/a&gt;&lt;/li&gt;
      &lt;li&gt;&lt;a href="#"&gt;Backup and Disaster Recovery&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
   &lt;!-- EOF SUBMENU --&gt;
  &lt;/li&gt;
  &lt;li&gt;&lt;a href="#"&gt;Clients&lt;/a&gt;&lt;/li&gt;  &lt;li&gt;&lt;a href="#"&gt;Contact Us&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</code></pre>
<p><strong>Jquery</strong></p>
<pre><code>
&lt;script&gt;
$(document).ready(function(){
$("ul.sub-menu").parent().mouseover(	  function(){
$(this).children('ul.sub-menu').show();
}	).mouseout(	   function(){
$(this).children('ul.sub-menu').hide();
});
});
&lt;/script&gt;
</code></pre>
<p><strong>Stylesheet</strong></p>
<pre><code>
&lt;style&gt;
.navigation li{font-family:Arial, Helvetica, sans-serif; height:31px; font-size:12px; font-weight:bold; color:#ffffff; float:left; padding-left:25px; padding-right:25px; padding-top:24px; background:#304F9E; list-style:none;}
.navigation li a{ text-decoration:none; color:#ffffff;}
ul.sub-menu {padding:0px; margin:0px; position:absolute; z-index:1000; display:none; background-color:#304F9E; width:200px; padding-bottom:10px; margin-top:10px; margin-left:-10px; }
ul.sub-menu li {border-bottom:1px dotted #bbb; height:20px; clear:left; display:block; text-align:left; list-style:none outside none;width:180px; color:#fff; padding:5px; margin:5px;}
&lt;/style&gt;
</code></pre>
<p><strong>Demo</strong></p>
<p>Click <a title="Demo of Submenu" href="http://www.dineshkarki.com.np/demos/submenu" target="_blank">here </a>for the demo</p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/create-submenu-with-jquery-and-css.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Stop skype to wrap your phone number in buttons</title>
		<link>http://dineshkarki.com.np/stop-skype-to-wrap-your-phone-number-in-buttons.html</link>
		<comments>http://dineshkarki.com.np/stop-skype-to-wrap-your-phone-number-in-buttons.html#comments</comments>
		<pubDate>Mon, 11 Apr 2011 13:08:46 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Skype]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=40</guid>
		<description><![CDATA[Skype, smart enough, but creates problem for your design with its feature to wrap numbers in button. As skype&#8217;s  forum has suggested for the use of meta tag in the header but it didn&#8217;t worked for me. So what you &#8230;<p class="read-more"><a href="http://dineshkarki.com.np/stop-skype-to-wrap-your-phone-number-in-buttons.html">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Skype, smart enough, but creates problem for your design with its feature to wrap numbers in button.</p>
<p>As skype&#8217;s  forum has suggested for the use of meta tag in the header but it didn&#8217;t worked for me.</p>
<p>So what you can do is just add a character in the  phone number and make it invisible.</p>
<pre><code>&lt;div class="ph_number"&gt;(403)26&lt;span style="display:none"&gt;_&lt;/span&gt;0-9021&lt;/div&gt;</code></pre>
<p>I have used underscore( _ ) here. You can use any character in it. But make sure you make it invisible. By use of non-numerical character, skype fails to recognize your number.</p>
<p>Simple And Effective. Cheers</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/stop-skype-to-wrap-your-phone-number-in-buttons.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Skype Button to you web</title>
		<link>http://dineshkarki.com.np/add-skype-button-to-you-web.html</link>
		<comments>http://dineshkarki.com.np/add-skype-button-to-you-web.html#comments</comments>
		<pubDate>Tue, 19 Apr 2011 13:38:42 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Skype]]></category>
		<category><![CDATA[live chat]]></category>
		<category><![CDATA[skype]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=62</guid>
		<description><![CDATA[Do you want to use skype button in your webpage to notify your skype status? You can get your skype button and embed in your webpage. Follow the link below to get your skype button. http://www.skype.com/intl/en-gb/tell-a-friend/wizard/ OR http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/ Note Make &#8230;<p class="read-more"><a href="http://dineshkarki.com.np/add-skype-button-to-you-web.html">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Do you want to use skype button in your webpage to notify your skype status? You can get your skype button and embed in your webpage. Follow the link below to get your skype button.</p>
<p><a href="http://www.skype.com/intl/en-gb/tell-a-friend/wizard/" target="_blank">http://www.skype.com/intl/en-gb/tell-a-friend/wizard/</a></p>
<p>OR</p>
<p><a href="http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/" target="_blank">http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/</a></p>
<p><strong>Note<br />
</strong>Make sure you have enabled <em>Allow my online status to be shown in web </em>under Tools -&gt; Options -&gt; Privacy Settings</p>
<p><strong>Demo</strong><br />
<script src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js" type="text/javascript"></script><br />
<a href="skype:dinesh.wework4web?chat"><img style="border: none;" src="http://mystatus.skype.com/balloon/dinesh%2Ewework4web" alt="My status" width="150" height="60" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/add-skype-button-to-you-web.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Usefull firefox Add-ons for web development</title>
		<link>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html</link>
		<comments>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html#comments</comments>
		<pubDate>Tue, 03 May 2011 03:53:10 +0000</pubDate>
		<dc:creator>Dinesh</dc:creator>
				<category><![CDATA[Firefox]]></category>
		<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[addons]]></category>

		<guid isPermaLink="false">http://dineshkarki.com.np/?p=70</guid>
		<description><![CDATA[Here is the list of Firefox add-ons which will help you in the web development. 1. Firebug With this addon you can edit, debug, inspect your html elements, css, javascript, ajax request/response. 2. MeasureIt Used to drag out a ruler to get the &#8230;<p class="read-more"><a href="http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html">Read more &#187;</a></p>]]></description>
			<content:encoded><![CDATA[<p>Here is the list of Firefox add-ons which will help you in the web development.</p>
<ul></ul>
<p><strong>1. Firebug<br />
</strong>With this addon you can edit, debug, inspect your html elements, css, javascript, ajax request/response.</p>
<p><strong>2. MeasureIt<br />
</strong>Used to drag out a ruler to get the pixel height and width of any element in web page.</p>
<p><strong>3. Modify Headers<br />
</strong>This addon gives feature to add, modify, filter you HTTP request headers. Widely Used for the web service development for smart phones.</p>
<p><strong>4. Fireshot<br />
</strong>Adds ability to take screenshot of entire/portion of webpage. You can edit your screenshot with annotation tools for text, highlights etc.</p>
<p><strong>5. Dummy Lipsum<br />
</strong>Generates Lorem Ipsum dummy text. You can specify the number of paragraphs and words to generate.</p>
<p><strong>6.  ColorZilla<br />
</strong>Provides eyedropper and color picker to get the color reading from any point of the web.</p>
<p>These are the addons that i am using for the web development. If you have more&#8230; Share It.</p>
<p><strong>How to install addons in firefox?</strong></p>
<ol>
<li>Go to Tools -&gt; Add-Ons</li>
<li>Click on Get Add ons tab</li>
<li>Search Addons</li>
<li>Click on <strong>Add To Firefox</strong></li>
</ol>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p>&nbsp;</p>
<p><strong><br />
</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://dineshkarki.com.np/usefull-firefox-add-ons-for-web-development.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

