<?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>Коментарі до Add FullAjax to Joomla! (2011.08.06)</title>
	<atom:link href="https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/feed" rel="self" type="application/rss+xml" />
	<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06</link>
	<description></description>
	<lastBuildDate>Tue, 06 Apr 2021 13:05:01 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.38</generator>
	<item>
		<title>Від: Robin</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-599</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 17:35:11 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-599</guid>
		<description><![CDATA[&lt;a href=&quot;link;?&gt;&quot; ax:wrap=&quot;0&quot;&gt;]]></description>
		<content:encoded><![CDATA[<p>&lt;a href=&quot;link;?&gt;&#8221; ax:wrap=&#8221;0&#8243;&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Robin</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-598</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 17:31:26 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-598</guid>
		<description><![CDATA[Thanks a lot for support Fedik.
I add ax:wrap=”0″ directly to language modul 
&lt;code&gt;&lt;a href=&quot;link;?&gt;&quot; ax:wrap=&quot;0&quot;&gt;&lt;/code&gt;, work for me for now ... 
Cool interface,very happy for that... 
Wish you the best...]]></description>
		<content:encoded><![CDATA[<p>Thanks a lot for support Fedik.<br />
I add ax:wrap=”0″ directly to language modul<br />
<code>&lt;a href=&quot;link;?&gt;" ax:wrap="0"&gt;</code>, work for me for now &#8230;<br />
Cool interface,very happy for that&#8230;<br />
Wish you the best&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Fedik</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-597</link>
		<dc:creator><![CDATA[Fedik]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 13:47:14 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-597</guid>
		<description><![CDATA[You can try add attribute ax:wrap=&quot;0&quot; for a link that for language change . &lt;pre lang=&quot;html4strict&quot;&gt; &lt;a href=&quot;/cegory/some1/mupage-2345.html&quot; title=&quot;My Link&quot; ax:wrap=&quot;0&quot; rel=&quot;nofollow&quot;&gt;My Link&lt;/a&gt;&lt;/pre&gt;

Or using Filter.on. Example:
&lt;pre lang=&quot;javascript&quot;&gt;
SRAX.Filter.on(&#039;beforewrap&#039;, function(ops) {
        if (ops.el.parentNode.parentNode.parentNode.id == &#039;sidebar-2&#039;){
            return false;
        }
});
&lt;/pre&gt;
It works for next  HTML:
&lt;pre lang=&quot;html4strict&quot;&gt;
&lt;div id=&quot;sidebar-2&quot;&gt;
    &lt;ul&gt;
        &lt;li id=&quot;item-243&quot; class=&quot;current active&quot;&gt;&lt;a href=&quot;/jdemo/parks-home&quot;  rel=&quot;nofollow&quot;&gt;Home&lt;/a&gt;&lt;/li&gt;
        &lt;li id=&quot;item-234&quot;&gt;&lt;a href=&quot;/jdemo/park-blog&quot;  rel=&quot;nofollow&quot;&gt; Blog&lt;/a&gt;&lt;/li&gt;
    &lt;/ul&gt;
&lt;/div&gt;
&lt;/pre&gt;
So you need to test how much you need parentNode.]]></description>
		<content:encoded><![CDATA[<p>You can try add attribute ax:wrap=&#8221;0&#8243; for a link that for language change .</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="html4strict" style="font-family:monospace;"> <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/cegory/some1/mupage-2345.html&quot;</span> <span style="color: #000066;">title</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;My Link&quot;</span> ax:wrap<span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;0&quot;</span> <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;nofollow&quot;</span>&gt;</span>My Link<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;</span></pre></td></tr></table></div>

<p>Or using Filter.on. Example:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="javascript" style="font-family:monospace;">SRAX.<span style="color: #660066;">Filter</span>.<span style="color: #660066;">on</span><span style="color: #009900;">&#40;</span><span style="color: #3366CC;">'beforewrap'</span><span style="color: #339933;">,</span> <span style="color: #000066; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>ops<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000066; font-weight: bold;">if</span> <span style="color: #009900;">&#40;</span>ops.<span style="color: #660066;">el</span>.<span style="color: #660066;">parentNode</span>.<span style="color: #660066;">parentNode</span>.<span style="color: #660066;">parentNode</span>.<span style="color: #660066;">id</span> <span style="color: #339933;">==</span> <span style="color: #3366CC;">'sidebar-2'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</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;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></td></tr></table></div>

<p>It works for next  HTML:</p>

<div class="wp_syntax"><table><tr><td class="code"><pre class="html4strict" style="font-family:monospace;"><span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">div</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;sidebar-2&quot;</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item-243&quot;</span> <span style="color: #000066;">class</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;current active&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/jdemo/parks-home&quot;</span>  <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;nofollow&quot;</span>&gt;</span>Home<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
        <span style="color: #009900;">&lt;<span style="color: #000000; font-weight: bold;">li</span> <span style="color: #000066;">id</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;item-234&quot;</span>&gt;&lt;<span style="color: #000000; font-weight: bold;">a</span> <span style="color: #000066;">href</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;/jdemo/park-blog&quot;</span>  <span style="color: #000066;">rel</span><span style="color: #66cc66;">=</span><span style="color: #ff0000;">&quot;nofollow&quot;</span>&gt;</span> Blog<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">a</span>&gt;&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">li</span>&gt;</span>
    <span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">ul</span>&gt;</span>
<span style="color: #009900;">&lt;<span style="color: #66cc66;">/</span><span style="color: #000000; font-weight: bold;">div</span>&gt;</span></pre></td></tr></table></div>

<p>So you need to test how much you need parentNode.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Robin</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-596</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 06:55:02 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-596</guid>
		<description><![CDATA[after implement this Filter line above, url is like http://multimedia.designova.cz/en/#!ax!forajax!/en/ which is no good ... any idea ?]]></description>
		<content:encoded><![CDATA[<p>after implement this Filter line above, url is like <a href="http://multimedia.designova.cz/en/#!ax!forajax!/en/" rel="nofollow">http://multimedia.designova.cz/en/#!ax!forajax!/en/</a> which is no good &#8230; any idea ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Robin</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-595</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 29 Nov 2011 06:52:30 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-595</guid>
		<description><![CDATA[Well I try this, SRAX.Filter.add({url:&#039;/en/&#039;, type:&#039;nowrap&#039;}); but no success ...]]></description>
		<content:encoded><![CDATA[<p>Well I try this, SRAX.Filter.add({url:&#8217;/en/&#8217;, type:&#8217;nowrap&#8217;}); but no success &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Fedik</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-594</link>
		<dc:creator><![CDATA[Fedik]]></dc:creator>
		<pubDate>Wed, 23 Nov 2011 10:20:38 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-594</guid>
		<description><![CDATA[yes it possible, but I not remember how ;)
need add the language change links in to &lt;a href=&quot;http://getsite.org.ua/en/fullajax/basics-usage-fullajax-library&quot; rel=&quot;nofollow&quot;&gt;FullAjax ignore filtr&lt;/a&gt;, or try &lt;a href=&quot;http://getsite.org.ua/en/fullajax/how-to-update-more-than-one-module-with-ajax&quot; rel=&quot;nofollow&quot;&gt;update all modules&lt;/a&gt; via AJAX]]></description>
		<content:encoded><![CDATA[<p>yes it possible, but I not remember how ;)<br />
need add the language change links in to <a href="http://getsite.org.ua/en/fullajax/basics-usage-fullajax-library" rel="nofollow">FullAjax ignore filtr</a>, or try <a href="http://getsite.org.ua/en/fullajax/how-to-update-more-than-one-module-with-ajax" rel="nofollow">update all modules</a> via AJAX</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Robin</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-593</link>
		<dc:creator><![CDATA[Robin]]></dc:creator>
		<pubDate>Tue, 22 Nov 2011 16:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-593</guid>
		<description><![CDATA[Hi, would like to ask about languagefilter  plugin in joomla 1.7. 
Would not be awesome to have possible language changes? Cause I try to make work ... not lucky enough, so it is possible ? 
I really like your work and Add Ajax is awesome. 
I always wanted to have kind of joomla in motion so I had few headache with that nasty Ajax ... 
Thanks a lot ... 
Please let me know ...]]></description>
		<content:encoded><![CDATA[<p>Hi, would like to ask about languagefilter  plugin in joomla 1.7.<br />
Would not be awesome to have possible language changes? Cause I try to make work &#8230; not lucky enough, so it is possible ?<br />
I really like your work and Add Ajax is awesome.<br />
I always wanted to have kind of joomla in motion so I had few headache with that nasty Ajax &#8230;<br />
Thanks a lot &#8230;<br />
Please let me know &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Azmandius</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-589</link>
		<dc:creator><![CDATA[Azmandius]]></dc:creator>
		<pubDate>Tue, 08 Nov 2011 09:44:19 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-589</guid>
		<description><![CDATA[Плагин интересный, инновационный, однако даже на вашей демке чуваки поиск не работает, и функция с изменением размеров шрифта глючит, сами взгляните.

Надо исправлять иначе для меня бесполезная будет штука.]]></description>
		<content:encoded><![CDATA[<p>Плагин интересный, инновационный, однако даже на вашей демке чуваки поиск не работает, и функция с изменением размеров шрифта глючит, сами взгляните.</p>
<p>Надо исправлять иначе для меня бесполезная будет штука.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Тим</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-586</link>
		<dc:creator><![CDATA[Тим]]></dc:creator>
		<pubDate>Fri, 30 Sep 2011 22:13:06 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-586</guid>
		<description><![CDATA[шаблоны тоже попробовал разные, скрипты - только штатные. Попробовать надо на чистой установке, наверное]]></description>
		<content:encoded><![CDATA[<p>шаблоны тоже попробовал разные, скрипты &#8211; только штатные. Попробовать надо на чистой установке, наверное</p>
]]></content:encoded>
	</item>
	<item>
		<title>Від: Fedik</title>
		<link>https://getsite.org.ua/uk/fullajax/add-fullajax-to-joomla-2011-08-06/comment-page-1#comment-585</link>
		<dc:creator><![CDATA[Fedik]]></dc:creator>
		<pubDate>Tue, 27 Sep 2011 10:55:39 +0000</pubDate>
		<guid isPermaLink="false">http://getsite.org.ua/?p=615#comment-585</guid>
		<description><![CDATA[все же склоняюсь к тому что все дело в конфиликте, или возможно что-то из шаблоном]]></description>
		<content:encoded><![CDATA[<p>все же склоняюсь к тому что все дело в конфиликте, или возможно что-то из шаблоном</p>
]]></content:encoded>
	</item>
</channel>
</rss>
