<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Комментарии для Блог web-разработчика</title>
	<atom:link href="http://web4develop.ru/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://web4develop.ru</link>
	<description>HTML+CSS, PHP, MySQL, JavaScript/jQuery</description>
	<lastBuildDate>Tue, 10 Apr 2012 12:49:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от admin</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-755</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 10 Apr 2012 12:49:18 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-755</guid>
		<description>&lt;a href=&quot;#comment-745&quot; rel=&quot;nofollow&quot;&gt;&lt;strong&gt;Kostik26ru&lt;/strong&gt;&lt;/a&gt;, попробуйте записать эти строки внутрь тега &lt;script&gt;:
&lt;pre lang&quot;html4scrict&quot;&gt;
&lt;script type=&quot;text/javascript&quot;&gt;
/*
* вот сюда
*/
&lt;/script&gt;
&lt;/pre&gt;</description>
		<content:encoded><![CDATA[<p><a href="#comment-745" rel="nofollow"><strong>Kostik26ru</strong></a>, попробуйте записать эти строки внутрь тега &lt;script&gt;:</p>
<pre lang"html4scrict">
&lt;script type="text/javascript"&gt;
/*
* вот сюда
*/
&lt;/script&gt;
</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от admin</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-754</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Tue, 10 Apr 2012 12:38:06 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-754</guid>
		<description>&lt;a href=&quot;#comment-752&quot; rel=&quot;nofollow&quot;&gt;&lt;strong&gt;Андрей&lt;/strong&gt;&lt;/a&gt;, простейшее решение:
В хеше УРЛа передаем некий параметр, к примеру, &lt;strong&gt;activeTab&lt;/strong&gt;, тогда УРЛ будет выглядеть так: &lt;em&gt;http://example.com/page.html#activeTab=1&lt;/em&gt;.
&lt;pre lang=&quot;javascript&quot;&gt;
$(document).ready(function(){

    /* 
    * Здесь код из поста 
    */

    var curTab = window.location.hash.replace(&quot;#activeTab=&quot;,&quot;&quot;);

    $(&quot;#lineTabs li:eq(&quot; + curTab + &quot;) a&quot;).click();
});
&lt;/pre&gt;
Нумерация табов идет от 0, т.е. для открытия второй вкладки передаем &lt;strong&gt;#activetab=1&lt;/strong&gt;, для 3-ей &lt;strong&gt;#activetab=2&lt;/strong&gt; и т.д.</description>
		<content:encoded><![CDATA[<p><a href="#comment-752" rel="nofollow"><strong>Андрей</strong></a>, простейшее решение:<br />
В хеше УРЛа передаем некий параметр, к примеру, <strong>activeTab</strong>, тогда УРЛ будет выглядеть так: <em><a href="http://example.com/page.html#activeTab=1" rel="nofollow">http://example.com/page.html#activeTab=1</a></em>.</p>

<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
&nbsp;
    <span style="color: #006600; font-style: italic;">/* 
    * Здесь код из поста 
    */</span>
&nbsp;
    <span style="color: #003366; font-weight: bold;">var</span> curTab <span style="color: #339933;">=</span> window.<span style="color: #660066;">location</span>.<span style="color: #660066;">hash</span>.<span style="color: #660066;">replace</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#activeTab=&quot;</span><span style="color: #339933;">,</span><span style="color: #3366CC;">&quot;&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
    $<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#lineTabs li:eq(&quot;</span> <span style="color: #339933;">+</span> curTab <span style="color: #339933;">+</span> <span style="color: #3366CC;">&quot;) a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Нумерация табов идет от 0, т.е. для открытия второй вкладки передаем <strong>#activetab=1</strong>, для 3-ей <strong>#activetab=2</strong> и т.д.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от Андрей</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-752</link>
		<dc:creator>Андрей</dc:creator>
		<pubDate>Wed, 28 Mar 2012 13:28:20 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-752</guid>
		<description>Здравствуйте! А как сделать ссылку с другой страницы на таб &quot;Текст&quot; например? Что бы при переходе по ссылке был активен именно он.</description>
		<content:encoded><![CDATA[<p>Здравствуйте! А как сделать ссылку с другой страницы на таб &#8220;Текст&#8221; например? Что бы при переходе по ссылке был активен именно он.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от admin</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-750</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 14 Mar 2012 11:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-750</guid>
		<description>Удалите из кода обращение к объекту console, обычно это &lt;strong&gt;console.log().&lt;/strong&gt;</description>
		<content:encoded><![CDATA[<p>Удалите из кода обращение к объекту console, обычно это <strong>console.log().</strong></p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от Arny</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-748</link>
		<dc:creator>Arny</dc:creator>
		<pubDate>Wed, 14 Mar 2012 11:42:02 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-748</guid>
		<description>Скажите подалуйста, столкнулся с проблемой ,что в ИЕ7, ИЕ8 не работает данный скрип, ошибку пишет, что 
&quot; Сообщение: &#039;console&#039; - определение отсутствует
Строка: 16
Символ: 4
Код: 0
&quot;

моя вина или нет?
спасибо.</description>
		<content:encoded><![CDATA[<p>Скажите подалуйста, столкнулся с проблемой ,что в ИЕ7, ИЕ8 не работает данный скрип, ошибку пишет, что<br />
&#8221; Сообщение: &#8216;console&#8217; &#8211; определение отсутствует<br />
Строка: 16<br />
Символ: 4<br />
Код: 0<br />
&#8221;</p>
<p>моя вина или нет?<br />
спасибо.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от Kostik26ru</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-745</link>
		<dc:creator>Kostik26ru</dc:creator>
		<pubDate>Fri, 17 Feb 2012 10:33:15 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-745</guid>
		<description>&lt;pre lang=&quot;javascript&quot;&gt;
$(document).ready(function(){
	$(&quot;#lineTabs li a&quot;).each(function (i) {
		$(&quot;#lineTabs li a:eq(&quot;+i+&quot;)&quot;).click(function(){
			var tab_id=i+1;
			$(&quot;#lineTabs li a&quot;).removeClass(&quot;active&quot;);
			$(this).addClass(&quot;active&quot;);
			$(&quot;#content div&quot;).stop(false,false).hide();
			$(&quot;#tab&quot;+tab_id).stop(false,false).show();
			return false;
		})
	})
})
&lt;/pre&gt;
при просмотре, эти строки отображаются на странице, помогите все исправить )</description>
		<content:encoded><![CDATA[
<div class="wp_syntax"><div class="code"><pre class="javascript" style="font-family:monospace;">$<span style="color: #009900;">&#40;</span>document<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">ready</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#lineTabs li a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">each</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span> <span style="color: #009900;">&#40;</span>i<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#lineTabs li a:eq(&quot;</span><span style="color: #339933;">+</span>i<span style="color: #339933;">+</span><span style="color: #3366CC;">&quot;)&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">click</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
			<span style="color: #003366; font-weight: bold;">var</span> tab_id<span style="color: #339933;">=</span>i<span style="color: #339933;">+</span><span style="color: #CC0000;">1</span><span style="color: #339933;">;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#lineTabs li a&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">removeClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;active&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">addClass</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;active&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#content div&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">hide</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#tab&quot;</span><span style="color: #339933;">+</span>tab_id<span style="color: #009900;">&#41;</span>.<span style="color: #000066;">stop</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">,</span><span style="color: #003366; font-weight: bold;">false</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">show</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #000066; font-weight: bold;">return</span> <span style="color: #003366; font-weight: bold;">false</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>при просмотре, эти строки отображаются на странице, помогите все исправить )</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от admin</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-740</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Wed, 14 Dec 2011 09:16:25 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-740</guid>
		<description>&lt;strong&gt;Сергей&lt;/strong&gt;, чтобы не включался режим совместимости в IE пропишите DOCTYPE на странице.

UPD: Только что проверил на кроссбраузерность &lt;a href=&quot;http://web4develop.ru/wp-content/uploads/2010/08/tabs2/index.html&quot; rel=&quot;nofollow&quot;&gt;примера&lt;/a&gt; в IE7, IE8, IE9 &#8212; всё норм. =)</description>
		<content:encoded><![CDATA[<p><strong>Сергей</strong>, чтобы не включался режим совместимости в IE пропишите DOCTYPE на странице.</p>
<p>UPD: Только что проверил на кроссбраузерность <a href="http://web4develop.ru/wp-content/uploads/2010/08/tabs2/index.html" rel="nofollow">примера</a> в IE7, IE8, IE9 &mdash; всё норм. =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Меню &#8220;Вкладки&#8221;: переключение табов при помощи jQuery от Сергей</title>
		<link>http://web4develop.ru/2010/08/menyu-vkladki-pereklyuchenie-tabov-pri-pomoshhi-jquery/comment-page-1/#comment-739</link>
		<dc:creator>Сергей</dc:creator>
		<pubDate>Wed, 14 Dec 2011 09:07:48 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=279#comment-739</guid>
		<description>Спасибо за статью, если б не &quot;любимый&quot; IE в режиме совместимости.....</description>
		<content:encoded><![CDATA[<p>Спасибо за статью, если б не &#8220;любимый&#8221; IE в режиме совместимости&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Случайное фоновое изображение с помощью JavaScript от Alex</title>
		<link>http://web4develop.ru/2010/11/randombackground/comment-page-1/#comment-705</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Thu, 01 Dec 2011 05:54:50 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=311#comment-705</guid>
		<description>Спасибо тебе огромное :)</description>
		<content:encoded><![CDATA[<p>Спасибо тебе огромное <img src='http://web4develop.ru/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Комментарий на Поддержка HTML5 в Internet Explorer от Nickproger</title>
		<link>http://web4develop.ru/2011/04/podderzhka-html5-v-internet-explorer/comment-page-1/#comment-704</link>
		<dc:creator>Nickproger</dc:creator>
		<pubDate>Mon, 21 Nov 2011 14:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://web4develop.ru/?p=334#comment-704</guid>
		<description>Да, пора уже переходить на новую семантичную вёрстку</description>
		<content:encoded><![CDATA[<p>Да, пора уже переходить на новую семантичную вёрстку</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<div style="height: 1px; width: 2px; overflow-y: scroll;">

