<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title type="html"><![CDATA[Форум PHP-MyAdmin.RU &mdash; Передать параметр jqery в php]]></title>
	<link rel="self" href="https://forum.php-myadmin.ru/extern.php?action=feed&amp;tid=2906&amp;type=atom" />
	<updated>2013-04-30T05:48:21Z</updated>
	<generator>PunBB</generator>
	<id>https://forum.php-myadmin.ru/viewtopic.php?id=2906</id>
		<entry>
			<title type="html"><![CDATA[Re: Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22882#p22882" />
			<content type="html"><![CDATA[<p>Не могу помочь. Не понимаю что вы делаете. Начните с простого примера из документации и затем добавляйте нужный функционал постепенно.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2013-04-30T05:48:21Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22882#p22882</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22878#p22878" />
			<content type="html"><![CDATA[<div class="codebox"><pre><code>Пробовал сделать так:

&lt;script&gt; 
$(function() {
 $( &quot;#tabs&quot; ).tabs();
      });
 
$(&quot;ul.supertab li a&quot;).click(function(){ 

        $.ajax({
            url: &quot;index.php&quot;,
            type: &quot;GET&quot;,       
            data: &quot;page=account&amp;listing=&quot;+$(this).attr(&#039;href&#039;),
            cache: false,         
            success: function(response){
               if(response == 0){ 
               alert(&quot;ошибка&quot;);
               }else{
                  $(&quot;#tabs-1&quot;).append(response);
               }
            }
         });
      });
 

&lt;/script&gt;</code></pre></div><br /><div class="codebox"><pre><code>&lt;div id=&quot;tabs&quot;&gt;
 &lt;ul class=&quot;supertab&quot;&gt;
 &lt;li&gt;&lt;a href=&quot;#active&quot;&gt;Активные&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#reclama&quot;&gt;Рекламные&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#disabled&quot;&gt;Неактивные&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href=&quot;#arhive&quot;&gt;Архив&lt;/a&gt;&lt;/li&gt;
 &lt;/ul&gt;
 &lt;div id=&quot;tabs-1&quot;&gt;
 &lt;/div&gt;
 &lt;/div&gt;</code></pre></div><p>Файер буг пишет:<br /></p><div class="quotebox"><blockquote><p>Error: jQuery UI Tabs: Mismatching fragment identifier.<br /> [Прерывать на этой ошибке] </p><p>throw new Error( msg );</p></blockquote></div>]]></content>
			<author>
				<name><![CDATA[serg-php]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=1084</uri>
			</author>
			<updated>2013-04-29T07:47:14Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22878#p22878</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22876#p22876" />
			<content type="html"><![CDATA[<div class="quotebox"><cite>serg-php сказал:</cite><blockquote><p>Смотрел.<br />Только у меня, к примеру, на табе 3 ajax/content3-slow.php в старнице подгружается еще одна целая страница с этим параметром.</p></blockquote></div><p>Разобраться с проблемой не смог. Попробуйте сформулировать вопрос иначе.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2013-04-29T07:16:56Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22876#p22876</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22874#p22874" />
			<content type="html"><![CDATA[<p>Смотрел.<br />Только у меня, к примеру, на табе 3 ajax/content3-slow.php в старнице подгружается еще одна целая страница с этим параметром.</p>]]></content>
			<author>
				<name><![CDATA[serg-php]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=1084</uri>
			</author>
			<updated>2013-04-28T18:35:10Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22874#p22874</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Re: Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22873#p22873" />
			<content type="html"><![CDATA[<p>Не понимаю откуда вы взяли такой пример. Посмотрите здесь:<br /><a href="http://jqueryui.com/tabs/#ajax">http://jqueryui.com/tabs/#ajax</a><br />Параметры можно передать в GET строке.</p>]]></content>
			<author>
				<name><![CDATA[Hanut]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=181</uri>
			</author>
			<updated>2013-04-28T18:23:53Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22873#p22873</id>
		</entry>
		<entry>
			<title type="html"><![CDATA[Передать параметр jqery в php]]></title>
			<link rel="alternate" href="https://forum.php-myadmin.ru/viewtopic.php?pid=22869#p22869" />
			<content type="html"><![CDATA[<p>Необходимо передать параметры табов:</p><p> active, expired, disabled, archive&nbsp; </p><p>в php через jquery.</p><p>6 часов гугления и сравнения примеров не помогли в моем вопросе</p><br /><p>&lt;link rel=&quot;stylesheet&quot; href=&quot;http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css&quot; /&gt;<br />&lt;script src=&quot;http://code.jquery.com/jquery-1.9.1.js&quot;&gt;&lt;/script&gt;<br />&lt;script src=&quot;http://code.jquery.com/ui/1.10.2/jquery-ui.js&quot;&gt;&lt;/script&gt;<br />&lt;link rel=&quot;stylesheet&quot; href=&quot;/resources/demos/style.css&quot; /&gt;</p><p>&lt;script&gt;<br /> $(function() {<br />$( &quot;#tabs&quot; ).tabs();</p><p> $(&#039;#tabs-2&#039;)({<br />&nbsp; &nbsp;url: &#039;index.php&#039;,<br />&nbsp; &nbsp;type: &quot;POST&quot;,<br />&nbsp; &nbsp;data: &#039;page=account&amp;listing=active&#039;,<br /> });</p><p>&nbsp; $(&#039;#tabs-3&#039;)({<br />&nbsp; &nbsp;url: &#039;index.php&#039;,<br />&nbsp; &nbsp;type: &quot;POST&quot;,<br />&nbsp; &nbsp;data: &#039;page=account&amp;listing=expired&#039;,<br /> });</p><p>&nbsp; $(&#039;#tabs-3&#039;)({<br />&nbsp; &nbsp;url: &#039;index.php&#039;,<br />&nbsp; &nbsp;type: &quot;POST&quot;,<br />&nbsp; &nbsp;data: &#039;page=account&amp;listing=disabled&#039;,<br /> });</p><p>&nbsp; &nbsp;$(&#039;#tabs-3&#039;)({<br />&nbsp; &nbsp;url: &#039;index.php&#039;,<br />&nbsp; &nbsp;type: &quot;POST&quot;,<br />&nbsp; &nbsp;data: &#039;page=account&amp;listing=archive&#039;,<br /> });</p><p>});</p><p>&lt;/script&gt;</p><br /><p>&lt;div id=&quot;tabs&quot;&gt;<br />&lt;ul&gt;<br />&lt;li&gt;&lt;a href=&quot;#tabs-1&quot;&gt;Активные&lt;/a&gt;&lt;/li&gt;<br />&lt;li&gt;&lt;a href=&quot;#tabs-2&quot;&gt;Рекламные&lt;/a&gt;&lt;/li&gt;<br />&lt;li&gt;&lt;a href=&quot;#tabs-3&quot;&gt;Неактивные&lt;/a&gt;&lt;/li&gt;<br />&lt;li&gt;&lt;a href=&quot;#tabs-4&quot;&gt;Архив&lt;/a&gt;&lt;/li&gt;<br />&lt;/ul&gt;<br />&lt;div id=&quot;tabs-1&quot;&gt;<br />&lt;/div&gt;<br />&lt;/div&gt;</p>]]></content>
			<author>
				<name><![CDATA[serg-php]]></name>
				<uri>https://forum.php-myadmin.ru/profile.php?id=1084</uri>
			</author>
			<updated>2013-04-28T15:16:08Z</updated>
			<id>https://forum.php-myadmin.ru/viewtopic.php?pid=22869#p22869</id>
		</entry>
</feed>
