<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-15494</id>
	<title>Nabble - jQuery General Discussion</title>
	<updated>2009-11-26T14:39:13Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/jQuery-General-Discussion-f15494.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jQuery-General-Discussion-f15494.html" />
	<subtitle type="html">&lt;a href=&quot;http://groups.google.com/group/jquery-en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;General Discussion&lt;/a&gt;&amp;nbsp;- this is the best place to post if you have general questions or concerns. Also, if you've built a site that uses jQuery, or would like to announce a new plugin, this is the place to do it.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26535804</id>
	<title>Comparing or checking for a specific &quot;sub&quot; class?</title>
	<published>2009-11-26T14:39:13Z</published>
	<updated>2009-11-26T14:39:13Z</updated>
	<author>
		<name>Janmansilver</name>
	</author>
	<content type="html">I have a menu looking like this:
&lt;br&gt;&lt;br&gt;&amp;lt;li class=&amp;quot;page_item current_page_item&amp;quot;&amp;gt;...&amp;lt;/li&amp;gt;
&lt;br&gt;&amp;lt;li class=&amp;quot;page_item&amp;quot;&amp;gt;...&amp;lt;/li&amp;gt;
&lt;br&gt;&amp;lt;li class=&amp;quot;page_item&amp;quot;&amp;gt;...&amp;lt;/li&amp;gt;
&lt;br&gt;&lt;br&gt;and so on...
&lt;br&gt;&lt;br&gt;I then have a mouseenter function that highlights/&amp;quot;de&amp;quot;-highlights the
&lt;br&gt;various menu items, but I would like to not having it affect the item
&lt;br&gt;with the extra class &amp;quot;current_page_item&amp;quot;. How do I solve this?
&lt;br&gt;&lt;br&gt;my current code:
&lt;br&gt;&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; $(document).ready(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('.page_item').mouseenter(function(e) {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).children('a').children('div').fadeIn(0);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).mouseleave(function(e) {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;		$(this).children('a').children('div').fadeOut(200);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Comparing-or-checking-for-a-specific-%22sub%22-class--tp26535804s27240p26535804.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26535546</id>
	<title>Re: add element after page has loaded</title>
	<published>2009-11-26T14:10:32Z</published>
	<updated>2009-11-26T14:10:32Z</updated>
	<author>
		<name>edencane-2</name>
	</author>
	<content type="html">Hi.
&lt;br&gt;&lt;br&gt;Thanks.
&lt;br&gt;That was what I needed.
&lt;br&gt;&lt;br&gt;Kr.
&lt;br&gt;Luke.
&lt;br&gt;&lt;br&gt;On Nov 26, 6:04 pm, Rick van Hoeij &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26535546&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rickvho...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best way to make sure that the form has been loaded is to use the load
&lt;br&gt;&amp;gt; callback function:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $('#formGen1').load('formGen1.jsp', function(){
&lt;br&gt;&amp;gt;    //Callback function: Form has been loaded
&lt;br&gt;&amp;gt;    //Code implementation
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I usualy hide the form that I'm editing until it is ready to be shown.
&lt;br&gt;&amp;gt; Simple hide() and show().
&lt;br&gt;&amp;gt; Hope this helps.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Greetz,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rick
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 26 nov, 01:25, edencane &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26535546&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;edenc...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hi.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have the following document.ready:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; $(document).ready(function(){
&lt;br&gt;&amp;gt; &amp;gt;         $('#formGen1').load('formGen1.jsp');
&lt;br&gt;&amp;gt; &amp;gt;         if(${membership eq 'propertyContractor'}) {
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen2').load('formGen2.jsp');
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen3a').load('formGen3a.jsp');
&lt;br&gt;&amp;gt; &amp;gt;         } else if (${membership eq 'cleaningContractor'}) {
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen2').load('formGen2.jsp');
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen3a').load('formGen3b.jsp');
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen3b').load('formGen4.jsp');
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen4').load('formGen3a.jsp');
&lt;br&gt;&amp;gt; &amp;gt;         } else if (${membership eq 'staff'}) {
&lt;br&gt;&amp;gt; &amp;gt;                 $('#formGen2').load('formGen3a.jsp');
&lt;br&gt;&amp;gt; &amp;gt;         }
&lt;br&gt;&amp;gt; &amp;gt;         $(window).load(function () {
&lt;br&gt;&amp;gt; &amp;gt;                 alert($('#dob').prev().html());
&lt;br&gt;&amp;gt; &amp;gt;                 //run code
&lt;br&gt;&amp;gt; &amp;gt;         });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; the html loaded in 'formGen1' is:
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;fieldset&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;legend&amp;gt;Personal details&amp;lt;/legend&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;p&amp;gt;&amp;lt;label for=&amp;quot;name&amp;quot;&amp;gt;Name&amp;lt;/label&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;input class=&amp;quot;required&amp;quot; type=&amp;quot;text&amp;quot; id=&amp;quot;name&amp;quot; name=&amp;quot;name&amp;quot;/&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;p&amp;gt;&amp;lt;label for=&amp;quot;dob&amp;quot;&amp;gt;Date of birth&amp;lt;/label&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;expanddate&amp;quot; id=&amp;quot;dob&amp;quot; name=&amp;quot;dob&amp;quot; value=&amp;quot;&amp;quot;
&lt;br&gt;&amp;gt; &amp;gt; format=&amp;quot;date&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;span&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;/p&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/fieldset&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; What I want to do is add an element after the #dob element.
&lt;br&gt;&amp;gt; &amp;gt; In the 's$(window).load' statement I am showing the html of the
&lt;br&gt;&amp;gt; &amp;gt; previous element as some feedback...
&lt;br&gt;&amp;gt; &amp;gt; As I understand it, $(window).load should kick in after all the pages
&lt;br&gt;&amp;gt; &amp;gt; have loaded, but clearly in my case something else is going on... i.e.
&lt;br&gt;&amp;gt; &amp;gt; the pages havent loaded yet...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; How can I do this?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Kind regards.
&lt;br&gt;&amp;gt; &amp;gt; Luke.
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/add-element-after-page-has-loaded-tp26522932s27240p26535546.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26535530</id>
	<title>Is there a plugin similar to this Flash effect in Yahoo.com  for media images?</title>
	<published>2009-11-26T14:09:18Z</published>
	<updated>2009-11-26T14:09:18Z</updated>
	<author>
		<name>Raymond Ho-2</name>
	</author>
	<content type="html">Hi guys,
&lt;br&gt;&lt;br&gt;I'm looking to develop this plugin in jQuery, or is there already an
&lt;br&gt;available version in jQuery for this effect?
&lt;br&gt;&lt;a href=&quot;http://movies.yahoo.com/feature/hmg-weekend-roundup-11-25-09.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://movies.yahoo.com/feature/hmg-weekend-roundup-11-25-09.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I really want the fading effect of the plugin.
&lt;br&gt;&lt;br&gt;Please tell me. Thanks
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Is-there-a-plugin-similar-to-this-Flash-effect-in-Yahoo.com--for-media-images--tp26535530s27240p26535530.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26534745</id>
	<title>Remove appended element</title>
	<published>2009-11-26T12:50:26Z</published>
	<updated>2009-11-26T12:50:26Z</updated>
	<author>
		<name>coldwired</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I'm trying to append an div element around the element that triggers the on hover event, then remove the div on mouse out (blur). I normally would use addClass / removeClass but this leaves class=&amp;quot;&amp;quot; when the class is removed and not the original state of the html. Here's my code, I can't work out how to remove the appended div correctly... :
&lt;br&gt;&lt;br&gt;jQuery(&amp;quot;p,h1,h2,h3,span,li, dd, dt,b,em,strong&amp;quot;).hover(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; jQuery('&amp;lt;div class=&amp;quot;selected&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;').append(jQuery(this).clone()).html();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; active = true;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; }, function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; jQuery(&amp;quot;.insense-selected&amp;quot;).remove();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; active = false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;This doesn't work as expected, can anyone help out? A solution to either problem described would suffice!
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Colin.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Remove-appended-element-tp26534745s27240p26534745.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26534200</id>
	<title>Re: function in ready not run in IE</title>
	<published>2009-11-26T11:50:47Z</published>
	<updated>2009-11-26T11:50:47Z</updated>
	<author>
		<name>MorningZ</name>
	</author>
	<content type="html">may want to try the correct syntax for &amp;quot;each&amp;quot;
&lt;br&gt;&lt;br&gt;$.each($items, function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;totalit(this);
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;also, just to point out, usually &amp;quot;best practice&amp;quot; points out to use &amp;quot;$&amp;quot;
&lt;br&gt;at the beginning of variable names for jQuery objects.... surely works
&lt;br&gt;otherwise, but your style is slightly confusing
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 26, 4:32 am, Neena &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26534200&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ever...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have below code that run the function when document is ready. It
&lt;br&gt;&amp;gt; works fine in Firefox but not IE. What did I do wrong? Looks like the
&lt;br&gt;&amp;gt; code doesn't get run at all. I tried jQuery(function() ... but it
&lt;br&gt;&amp;gt; didn't work too
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $(document).ready(
&lt;br&gt;&amp;gt;         function() {
&lt;br&gt;&amp;gt;                 var $items = ['regular', 'outsource', 'total_headcount', 'internal',
&lt;br&gt;&amp;gt; 'external', 'resigned', 'eligible', 'member', 'valoptec_percent'];
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;                 $($items).each(function() {
&lt;br&gt;&amp;gt;                         totalIt(this);
&lt;br&gt;&amp;gt;                 });
&lt;br&gt;&amp;gt;         }
&lt;br&gt;&amp;gt; );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks!
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/function-in-ready-not-run-in-IE-tp26531098s27240p26534200.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533536</id>
	<title>Re: Debuging AJAX</title>
	<published>2009-11-26T10:46:02Z</published>
	<updated>2009-11-26T10:46:02Z</updated>
	<author>
		<name>Rockinelle</name>
	</author>
	<content type="html">Here's a link to a screenshot of my console. When I click the form
&lt;br&gt;this displays for a moment before the page reloads and the console is
&lt;br&gt;refreshed. To view this I have to hit the stop bottom before it
&lt;br&gt;reloads the page. It reloads because there isn't a value in the action
&lt;br&gt;attribute of the form. &lt;a href=&quot;http://picasaweb.google.com/lh/photo/soYaBaQlN-u-kyhLpQHToA?feat=directlink&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://picasaweb.google.com/lh/photo/soYaBaQlN-u-kyhLpQHToA?feat=directlink&lt;/a&gt;&lt;br&gt;&lt;br&gt;As you can see from the console, there isn't a response from the page
&lt;br&gt;I'm trying to send the POST. I have verified the path and i know it's
&lt;br&gt;correct. Clicking on the response tab shows a button labeled 'Load
&lt;br&gt;Response'. When clicked nothing happens. How do I interpret this. Here
&lt;br&gt;is the java script and below the form.
&lt;br&gt;&lt;br&gt;$(document).ready(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('#193').live('submit',function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var formData = $(this).serialize();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(formData);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.post('setTechGoal.php', formData, function(data){ console.log
&lt;br&gt;(data)});
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;&amp;lt;form id=&amp;quot;193&amp;quot; accept-charset=&amp;quot;utf-8&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;tech&amp;quot; value=&amp;quot;193&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;location&amp;quot; value=&amp;quot;Redding&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;hidden&amp;quot; name=&amp;quot;week&amp;quot; value=&amp;quot;48&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;Set Goal &amp;rarr;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;techGoal&amp;quot; value=&amp;quot;&amp;quot; size=&amp;quot;10&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/form&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 25, 2:36 pm, Peter Edwards &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533536&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;p...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hey,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; don't use document.write() or alert() to debug - either use
&lt;br&gt;&amp;gt; console.log() or have a div in the document which can display debugging
&lt;br&gt;&amp;gt; information and append any data to it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $('#testform').live('submit',function(){
&lt;br&gt;&amp;gt;     var formData = $(this).serialize();
&lt;br&gt;&amp;gt;     console.log(formData);
&lt;br&gt;&amp;gt;     $.post('ajax/setvalue.php', formData, function(data){ console.log(data) });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Firebug should log the POST as well as any response from it as well.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; HTH
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; on 25/11/2009 21:10 Rockinelle said::
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Any new eyes out there? Not sure why this got changed to accessibility
&lt;br&gt;&amp;gt; &amp;gt; discussion.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Nov 24, 4:46 pm, Rockinelle &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26533536&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ericbles...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Hey everyone,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I've been trying to make a .post work for me and I'm using firebug to
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; attempt to debug my problems. I am trying to use ajax to process a
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; form and from what I can tell in Firebug, I am not getting a response.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Now I have removed the action in the form itself so it's just reloads
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; the page after the .post fails.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; $('#testform').live('submit',function(){
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;     var formData = $(this).serialize();
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;     alert(formData); //to verify the data is formatted properly and it
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; is.
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;     $.post('ajax/setvalue.php', formData, function(data)
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; { document.write(data) });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The path to the remote script is correct. formData is formatted
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; properly. The php doc only echo the string 'pass' to let me know it
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; got the request. I'm using .live rather than .submit because the form
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; is loaded via an ajax call so it waits for the form to load before it
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; binds this ajax request to the form.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; So if you have some tips on my code great, but I'd really like a good
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; tool to debug this myself. Maybe there is something in firebug I'm
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; missing.
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Debuging-AJAX-tp26505834s27240p26533536.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533468</id>
	<title>Re: Superfish jQuery menu plugin RTL support</title>
	<published>2009-11-26T10:40:06Z</published>
	<updated>2009-11-26T10:40:06Z</updated>
	<author>
		<name>Charlie Tomlinson</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000066&quot;&gt;
change the LI's to float right instead of left&lt;br&gt;
&lt;br&gt;
Vlad Shapiro wrote:
&lt;blockquote id=&quot;mid_1b7560ce-5ce0-48b4-8538-c2cfc3dfbbf5_j4g2000yqe_googlegroups_com&quot; cite=&quot;mid:1b7560ce-5ce0-48b4-8538-c2cfc3dfbbf5@j4g2000yqe.googlegroups.com&quot; type=&quot;cite&quot;&gt;
  &lt;pre wrap=&quot;&quot;&gt;Ahoy!

I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew
website,

Example:
&lt;a class=&quot;moz-txt-link-freetext&quot; href=&quot;http://users.tpg.com.au/j_birch/plugins/superfish/#sample4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://users.tpg.com.au/j_birch/plugins/superfish/#sample4&lt;/a&gt;

but no success so far, maybe someone already have this solved?
Any help will be most appreciated!

Best regards,
Vlad.

  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Superfish-jQuery-menu-plugin-RTL-support-tp26531103s27240p26533468.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533195</id>
	<title>Re: Issue with simplemodal plugin and absolute positioned  content</title>
	<published>2009-11-26T10:15:36Z</published>
	<updated>2009-11-26T10:15:36Z</updated>
	<author>
		<name>Eric Getchell</name>
	</author>
	<content type="html">Hey Eric,
&lt;br&gt;&lt;br&gt;Thanks for checking into this. &amp;nbsp;I've done some more digging and I've
&lt;br&gt;narrowed the issue down to the container/wrapping div that is injected
&lt;br&gt;into the DOM. &amp;nbsp;If I remove the following from the container
&lt;br&gt;(s.d.container) when it is created:
&lt;br&gt;&amp;nbsp; &amp;nbsp; display: 'none',
&lt;br&gt;&amp;nbsp; &amp;nbsp; position: 'fixed',
&lt;br&gt;..the divs on the page do not collapse (of course the modal does not
&lt;br&gt;correctly render, but that is to be expected).
&lt;br&gt;&lt;br&gt;If I remove the following three items from the wrapping div (s.d.wrap)
&lt;br&gt;when it is created:
&lt;br&gt;&amp;nbsp; &amp;nbsp; .attr('tabIndex', -1)
&lt;br&gt;&amp;nbsp; &amp;nbsp; .addClass('simplemodal-wrap')
&lt;br&gt;&amp;nbsp; &amp;nbsp; .css({height: '100%', outline: 0, width: '100%'})
&lt;br&gt;... it renders correctly in IE 6,7 and Firefox. &amp;nbsp;The odd thing is that
&lt;br&gt;I have to remove all three, any combination of the three items will
&lt;br&gt;cause the divs to collapse. &amp;nbsp;If found the fact that all three needed
&lt;br&gt;to be removed surprising as I would have expected the tab index
&lt;br&gt;modification to have no impact to the page layout.
&lt;br&gt;&lt;br&gt;I'm still looking, but if anything above seems to point to the cause,
&lt;br&gt;let me know!
&lt;br&gt;&lt;br&gt;Eric
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issue-with-simplemodal-plugin-and-absolute-positioned--content-tp26529033s27240p26533195.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26533091</id>
	<title>Re: Animate background</title>
	<published>2009-11-26T10:08:24Z</published>
	<updated>2009-11-26T10:08:24Z</updated>
	<author>
		<name>Charlie Tomlinson</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000066&quot;&gt;
not sure why using background image change, in my mind much easier to
use a well developed slideshow plugin like cycle and absolute position
your tabs over top of the slides&lt;br&gt;
&lt;br&gt;
by using cycle's API can easily mesh the tabs and slides together to
work as timed show or manual click or hover&lt;br&gt;
&lt;br&gt;
Leonardo Aidar wrote:
&lt;blockquote id=&quot;mid_f749b6360911260824w3d855755x4541f943be85db3c_mail_gmail_com&quot; cite=&quot;mid:f749b6360911260824w3d855755x4541f943be85db3c@mail.gmail.com&quot; type=&quot;cite&quot;&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(235, 239, 249);&quot; title=&quot;ol&amp;aacute; galera, eu queria fazer uma anima&amp;ccedil;&amp;atilde;o com o background do meu elemento div, mas a minha div est&amp;aacute; abaixo de outra, i preciso mudar o background de 5 em 5 segundos, eu gostaria de colocar uma anima&amp;ccedil;&amp;atilde;o nessa transi&amp;ccedil;&amp;atilde;o de fotos do background, enfim&quot;&gt;hello
guys, I wanted to do an animation with the background of my div
element, but my div is below one, i need to change the background of 5
in 5 seconds, I would like to place an animation in the transition of
the background pictures, finally &lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;vou colocar o c&amp;oacute;digo ea imagem talvez seja mais f&amp;aacute;cil de entender.&quot;&gt;I
put the code and the image is perhaps easier to understand.&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
  &lt;br&gt;
CSS&lt;br&gt;
  &lt;br&gt;
div#content {&lt;br&gt;
width:717px;&lt;br&gt;
height:373px;&lt;br&gt;
float:left;&lt;br&gt;
background:#FFFFFF url(&quot;../images/homeImg.jpg&quot;) top right no-repeat;&lt;br&gt;
}&lt;br&gt;
  &lt;br&gt;
div#content ul li {&lt;br&gt;
width:120px;&lt;br&gt;
height:71px;&lt;br&gt;
float:left;&lt;br&gt;
margin-top:9px;&lt;br&gt;
padding:11px 0px 0px 11px;&lt;br&gt;
font-size:14px;&lt;br&gt;
}&lt;br&gt;
  &lt;br&gt;
HTML&lt;br&gt;
  &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;div id=&quot;content&quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;ul&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;boxOne&quot;&amp;gt;BOX 1&amp;lt;/li&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;boxTwo&quot;&amp;gt;BOX 2&amp;lt;/li&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;boxT&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span title=&quot;tr&amp;ecirc;s&quot;&gt;hree&lt;/span&gt;&lt;/span&gt;&quot;&amp;gt;BOX
3&amp;lt;/li&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;li class=&quot;boxFour&quot;&amp;gt;BOX 4&amp;lt;/li&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/ul&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/div&amp;gt;&lt;br&gt;
  &lt;br&gt;
  &lt;br&gt;
JQUERY&lt;br&gt;
  &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; $(document).ready(function(){&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var $imgBoxHome = new Array(&quot;../../components/
  &lt;div id=&quot;:vr&quot; class=&quot;ii gt&quot;&gt;images/animebox1.jpg&quot;,&quot;../../components/images/animebox2.jpg&quot;,&quot;../../components/images/animebox3.jpg&quot;);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; var $indice = 0;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; setInterval(function(){ $(&quot;#content&quot;).css({background:
&quot;#ffffff url(&quot; + $imgBoxHome[$indice] + &quot;) top right no-repeat&quot;});
if($indice == ($imgBoxHome.length - 1)){&amp;nbsp;&amp;nbsp;&amp;nbsp; $indice = 0; }else{&amp;nbsp;&amp;nbsp;&amp;nbsp;
$indice = $indice + 1;}&amp;nbsp;&amp;nbsp;&amp;nbsp; },5000);&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; });&lt;br&gt;
  &lt;br&gt;
  &lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span title=&quot;alguem pode me ajudar?&quot;&gt;someone help me?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
  &lt;br&gt;
  &lt;hr size=&quot;4&quot; width=&quot;90%&quot;&gt;&lt;br&gt;
  &lt;center&gt;&lt;img src=&quot;http://old.nabble.com/attachment/26533091/0/part1.05060206.04050006%40gmail.com&quot;&gt;&lt;/center&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
&lt;br /&gt; </content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Animate-background-tp26531795s27240p26533091.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532989</id>
	<title>jquery uploadify question</title>
	<published>2009-11-26T09:57:57Z</published>
	<updated>2009-11-26T09:57:57Z</updated>
	<author>
		<name>heohni</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;This function:
&lt;br&gt;&lt;br&gt;var c_folder = $('input[name=&amp;quot;client_folder&amp;quot;]').val();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#uploadify&amp;quot;).uploadify({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'uploader' &amp;nbsp; &amp;nbsp; &amp;nbsp; : 'inc/fileupload/uploadify.swf',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'script' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 'inc/fileupload/uploadify.php',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'scriptData' &amp;nbsp; &amp;nbsp; : {'c_folder': c_folder},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'cancelImg' &amp;nbsp; &amp;nbsp; &amp;nbsp;: 'inc/fileupload/cancel.png',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'folder' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : 'images/uploads',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'queueID' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: 'fileQueue',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'auto' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'multi' &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'queueSizeLimit' : 3,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'buttonText'	 : 'Auswahl',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'sizeLimit'		 : 10000000,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'fileDesc'		 : '*.jpg;*.jpeg;*.png',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'fileExt'		 : '*.jpg;*.jpeg;*.png',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 'onComplete': function(event, queueID, fileObj, reposnse, data) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;		$('#filesUploaded').append('&amp;lt;img src=&amp;quot;inc/fileupload/
&lt;br&gt;cancel.png&amp;quot; alt=&amp;quot;&amp;quot; id=&amp;quot;'+c_folder+'/'+fileObj.name+'&amp;quot; class=&amp;quot;img_del&amp;quot;
&lt;br&gt;border=&amp;quot;0&amp;quot; style=&amp;quot;padding-right:5px; cursor: pointer;&amp;quot;&amp;gt;&amp;lt;a
&lt;br&gt;target=&amp;quot;_blank&amp;quot; href=&amp;quot;images/uploads/'+c_folder+'/'+fileObj.name
&lt;br&gt;+'&amp;quot;&amp;gt;'+fileObj.name+'&amp;lt;/a&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;		$('#fileQueue').css({'display' : 'none'});
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('#cancel').css({'display' : 'none'});
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;.img_del&amp;quot;).click(function () {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var image_name = this.id;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.ajax({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: &amp;quot;get&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: &amp;nbsp;&amp;quot;inc/ajax_del_pic.php?img=&amp;quot;+image_name,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success: function(msg){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(msg);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;The Script is uploading the pics great and shows me the delete image.
&lt;br&gt;But on click, the function to delete the picture is not getting called
&lt;br&gt;and I don't get why?
&lt;br&gt;Any ideas why it seams that the element img_del seem not available?
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jquery-uploadify-question-tp26532989s27240p26532989.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532555</id>
	<title>Re: jQuery Slider - disable keyboard control</title>
	<published>2009-11-26T09:19:23Z</published>
	<updated>2009-11-26T09:19:23Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">I don&amp;#39;t recommend it, as it&amp;#39;s there for accessibility. However, if you must, add your own handle manually with no href:&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;div id=&amp;quot;slider&amp;quot;&amp;gt;&lt;/div&gt;&lt;div&gt;  &amp;lt;a class=&amp;quot;ui-slider-handle&amp;quot;&amp;gt;&amp;lt;/a&amp;gt;&lt;/div&gt;
&lt;div&gt;&amp;lt;/div&amp;gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;If you have any more questions about it, please ask on the jQuery UI list:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://groups.google.com/group/jquery-ui&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui&lt;/a&gt;&lt;br&gt;
&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;- Richard&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 10:51 AM, akitainu27 &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26532555&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;akita_inu_dog@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;&lt;br&gt;
Can slider keyboard control be disabled for good without disabling the&lt;br&gt;
slider?&lt;br&gt;
Thanks.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;--&lt;br&gt;
View this message in context: &lt;a href=&quot;http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26531343.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26531343.html&lt;/a&gt;&lt;br&gt;

Sent from the jQuery General Discussion mailing list archive at Nabble.com.&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26532555.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532415</id>
	<title>disable links in a class set dynamically</title>
	<published>2009-11-26T09:09:45Z</published>
	<updated>2009-11-26T09:09:45Z</updated>
	<author>
		<name>Keysher</name>
	</author>
	<content type="html">Hi!
&lt;br&gt;&lt;br&gt;I have a problem.
&lt;br&gt;&lt;br&gt;I want to disable links in a specified class. Like this:
&lt;br&gt;&lt;br&gt;$(&amp;quot;.disabled&amp;quot;).click( function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return false;
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;It works fine if the class exists before, but if I add the class to an
&lt;br&gt;element, not works!!
&lt;br&gt;&lt;br&gt;$(document).ready(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;.disabled&amp;quot;).click( function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return false;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;.noClick&amp;quot;).click( function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).addClass(&amp;quot;disabled&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;The HTML:
&lt;br&gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;noClick&amp;quot;&amp;gt;Click!&amp;lt;/a&amp;gt;
&lt;br&gt;&lt;br&gt;(This is an example, I know that isn't logic)
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/disable-links-in-a-class-set-dynamically-tp26532415s27240p26532415.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26532251</id>
	<title>Re: Re: simple jquery form plugin question</title>
	<published>2009-11-26T08:57:40Z</published>
	<updated>2009-11-26T08:57:40Z</updated>
	<author>
		<name>David-792</name>
	</author>
	<content type="html">Thank you very much Kelly!&lt;br&gt;You solved my problem.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 12:59 AM, Kelly &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26532251&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kks6@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Hi David,&lt;br&gt;
I was able to recreate the same problem and fixed it. Try this:&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&amp;lt;html&amp;gt;&lt;br&gt;
&amp;lt;head&amp;gt;&lt;br&gt;
&amp;lt;title&amp;gt;jQuery Form Plugin&amp;lt;/title&amp;gt;&lt;br&gt;
&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br&gt;
form { background: #DFEFFC; border: 5px solid #c5dbec; margin: 10px 0;&lt;br&gt;
padding: 20px }&lt;br&gt;
&amp;lt;/style&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;../jquery-latest.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;../jquery.form.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;&lt;br&gt;
&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;        // wait for the DOM to be loaded&lt;br&gt;
        $(document).ready(function() {&lt;br&gt;
            // bind &amp;#39;myForm&amp;#39; and provide a simple callback function&lt;br&gt;
            $(&amp;#39;#myForm&amp;#39;).ajaxForm(function() {&lt;br&gt;
                alert(&amp;quot;Thank you for your comment!&amp;quot;);&lt;br&gt;
            });&lt;br&gt;
        });&lt;br&gt;
&lt;br&gt;
&amp;lt;/script&amp;gt;&lt;br&gt;
&lt;/div&gt;&amp;lt;/head&amp;gt;&lt;br&gt;
&amp;lt;body&amp;gt;&lt;br&gt;
&amp;lt;form method=&amp;quot;post&amp;quot; action=&amp;quot;dummy.php&amp;quot; id=&amp;quot;myForm&amp;quot;&amp;gt;&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;      Name:&amp;lt;input type=&amp;quot;text&amp;quot; value=&amp;quot;MyName1&amp;quot; name=&amp;quot;Name&amp;quot;/&amp;gt;&lt;br&gt;
      &amp;lt;input type=&amp;quot;submit&amp;quot; value=&amp;quot;Submit1&amp;quot; name=&amp;quot;submitButton&amp;quot;/&amp;gt;&lt;br&gt;
&lt;br&gt;
&amp;lt;/form&amp;gt;&lt;br&gt;
&amp;lt;/body&amp;gt;&lt;br&gt;
&amp;lt;/html&amp;gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;- replace action=&amp;quot;&lt;a href=&quot;http://jquery.malsup.com/form/dummy.php&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://jquery.malsup.com/form/dummy.php&lt;/a&gt;&amp;quot; with:&lt;br&gt;
action=&amp;quot;dummy.php&amp;quot;  [just create a text file with dummy text in it,&lt;br&gt;
name it &amp;#39;dummy.php&amp;#39; and put in same directory as your test HTML file]&lt;br&gt;
- remove the extra pair of script tags &amp;lt;script type=&amp;quot;text/&lt;br&gt;
javascript&amp;quot;&amp;gt;  &amp;lt;/script&amp;gt; - you nested your script inside two pairs of&lt;br&gt;
tags - just remove one pair.&lt;br&gt;
&lt;br&gt;
Other than that, just make sure the path to your .js files is correct,&lt;br&gt;
as Brian suggested.&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/simple-jquery-form-plugin-question-tp26522934s27240p26532251.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531795</id>
	<title>Animate background</title>
	<published>2009-11-26T08:24:01Z</published>
	<updated>2009-11-26T08:24:01Z</updated>
	<author>
		<name>Leonardo Aidar</name>
	</author>
	<content type="html">&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span style=&quot;background-color: rgb(235, 239, 249);&quot; title=&quot;olá galera, eu queria fazer uma animação com o background do meu elemento div, mas a minha div está abaixo de outra, i preciso mudar o background de 5 em 5 segundos, eu gostaria de colocar uma animação nessa transição de fotos do background, enfim&quot;&gt;hello
guys, I wanted to do an animation with the background of my div
element, but my div is below one, i need to change the background of 5
in 5 seconds, I would like to place an animation in the transition of
the background pictures, finally &lt;/span&gt;&lt;span style=&quot;background-color: rgb(255, 255, 255);&quot; title=&quot;vou colocar o código ea imagem talvez seja mais fácil de entender.&quot;&gt;I put the code and the image is perhaps easier to understand.&lt;/span&gt;&lt;/span&gt;&lt;br&gt;


&lt;br&gt;CSS&lt;br&gt;&lt;br&gt;div#content {&lt;br&gt;width:717px;&lt;br&gt;height:373px;&lt;br&gt;float:left;&lt;br&gt;background:#FFFFFF url(&amp;quot;../images/homeImg.jpg&amp;quot;) top right no-repeat;&lt;br&gt;}&lt;br&gt;&lt;br&gt;div#content ul li {&lt;br&gt;width:120px;&lt;br&gt;height:71px;&lt;br&gt;


float:left;&lt;br&gt;margin-top:9px;&lt;br&gt;padding:11px 0px 0px 11px;&lt;br&gt;font-size:14px;&lt;br&gt;}&lt;br&gt;&lt;br&gt;HTML&lt;br&gt;&lt;br&gt;            &amp;lt;div id=&amp;quot;content&amp;quot;&amp;gt;&lt;br&gt;                &amp;lt;ul&amp;gt;&lt;br&gt;                    &amp;lt;li class=&amp;quot;boxOne&amp;quot;&amp;gt;BOX 1&amp;lt;/li&amp;gt;&lt;br&gt;


                    &amp;lt;li class=&amp;quot;boxTwo&amp;quot;&amp;gt;BOX 2&amp;lt;/li&amp;gt;&lt;br&gt;                    &amp;lt;li class=&amp;quot;boxT&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span title=&quot;três&quot;&gt;hree&lt;/span&gt;&lt;/span&gt;&amp;quot;&amp;gt;BOX 3&amp;lt;/li&amp;gt;&lt;br&gt;


                    &amp;lt;li class=&amp;quot;boxFour&amp;quot;&amp;gt;BOX 4&amp;lt;/li&amp;gt;&lt;br&gt;                &amp;lt;/ul&amp;gt;&lt;br&gt;            &amp;lt;/div&amp;gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;JQUERY&lt;br&gt;&lt;br&gt;    $(document).ready(function(){&lt;br&gt;                &lt;br&gt;        var $imgBoxHome = new Array(&amp;quot;../../components/&lt;div id=&quot;:vr&quot; class=&quot;ii gt&quot;&gt;images/animebox1.jpg&amp;quot;,&amp;quot;../../components/images/animebox2.jpg&amp;quot;,&amp;quot;../../components/images/animebox3.jpg&amp;quot;);&lt;br&gt;


        var $indice = 0;&lt;br&gt;        setInterval(function(){ $(&amp;quot;#content&amp;quot;).css({background:
&amp;quot;#ffffff url(&amp;quot; + $imgBoxHome[$indice] + &amp;quot;) top right no-repeat&amp;quot;});
if($indice == ($imgBoxHome.length - 1)){    $indice = 0; }else{   
$indice = $indice + 1;}    },5000);&lt;br&gt;
        &lt;br&gt;    });&lt;br&gt;&lt;br&gt;&lt;span id=&quot;result_box&quot; class=&quot;long_text&quot;&gt;&lt;span title=&quot;alguem pode me ajudar?&quot;&gt;someone help me?&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt; &lt;div class=&quot;small&quot;&gt;&lt;br/&gt;&lt;img src=&quot;http://old.nabble.com/images/icon_attachment.gif&quot; &gt; &lt;strong&gt;areacontent.jpg&lt;/strong&gt; (74K) &lt;a href=&quot;http://old.nabble.com/attachment/26531795/0/areacontent.jpg&quot; target=&quot;_top&quot;&gt;Download Attachment&lt;/a&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Animate-background-tp26531795s27240p26531795.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531494</id>
	<title>Re: Validate / Remote</title>
	<published>2009-11-26T08:02:36Z</published>
	<updated>2009-11-26T08:02:36Z</updated>
	<author>
		<name>Jörn Zaefferer-2</name>
	</author>
	<content type="html">That script will get a single GET paremter with the name of the field as the key and the value of the field as the value, here you&amp;#39;d get verifica_user.php?cusuario=username&lt;br&gt;&lt;br&gt;Jörn&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 1:30 PM, RCLumbriga &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531494&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ronanlumb@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Hi..  Sory the really bad english&lt;br&gt;
&lt;br&gt;
I have one problem with remote in Jquery.validate&lt;br&gt;
&lt;br&gt;
I do this&lt;br&gt;
&lt;br&gt;
 cusuario:{&lt;br&gt;
                                required: true, minlength: 5,&lt;br&gt;
                                remote: &amp;quot;verifica_user.php&amp;quot;&lt;br&gt;
                            },&lt;br&gt;
&lt;br&gt;
Now  i whant know how the script verifica_user.php will recive the&lt;br&gt;
information..&lt;br&gt;
&lt;br&gt;
----&lt;br&gt;
I still trying make one script when any user go create on account,,&lt;br&gt;
first will verify if this account exist. If exist will appear on&lt;br&gt;
message.. This accound still in use. Please choice another..&lt;br&gt;
&lt;br&gt;
But i don&amp;#39;t know how get the user still typing and pass from php&lt;br&gt;
script, where will do this comparation..&lt;br&gt;
&lt;br&gt;
Thanks&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validate---Remote-tp26531100s27240p26531494.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531414</id>
	<title>Re: Re: form always goes to index.php</title>
	<published>2009-11-26T07:56:04Z</published>
	<updated>2009-11-26T07:56:04Z</updated>
	<author>
		<name>waseem sabjee</name>
	</author>
	<content type="html">its kinda common,&lt;div&gt;but yeah it is a quick work around through jquery if you don&amp;#39;t wanna use forms..&lt;/div&gt;&lt;div&gt;a little less html. and a few lines of js :)&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 4:30 PM, Henjo &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531414&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henjohoeksma@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;That would be like a workable trick. Is this something common?&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
On Nov 26, 2:40 pm, waseem sabjee &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531414&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;waseemsab...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; you dont need to you a form.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; set up the following html&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;name&amp;quot; /&amp;gt;&lt;br&gt;
&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;#39;submitform&amp;quot;&amp;gt;Submit&amp;lt;/a&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; have the follwoing jQUery&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; $(function() {&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; var btn_submit = $(&amp;quot;.submitform&amp;quot;);&lt;br&gt;
&amp;gt; var txt_name = $(&amp;quot;.name&amp;quot;);&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; btn_submit.click(function(e) {&lt;br&gt;
&amp;gt; e.preventDefault();&lt;br&gt;
&amp;gt; top.location = index.php?name=&amp;quot;+txt_name.val();&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; });&lt;br&gt;
&amp;gt; });&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; it kinda works just like a form :)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; you can access the values via phph $_GET[] as well.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt; On Thu, Nov 26, 2009 at 3:35 PM, Henjo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531414&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henjohoek...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt; Hi,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; a form that has an action to an index.php?id=value is submitted&lt;br&gt;
&amp;gt; &amp;gt; through jquery with $(&amp;#39;form&amp;#39;).submit() .&lt;br&gt;
&amp;gt; &amp;gt; Somehow it always goes to the plain index.php adding the values behind&lt;br&gt;
&amp;gt; &amp;gt; it like: index.php?myFormValue=value .&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; I don&amp;#39;t get any errors in the debug console (FF) or the Error Console.&lt;br&gt;
&amp;gt; &amp;gt; How can I get this to work properly?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; When I mod_rewrite in index.php?id=value to - for example - &amp;#39;results/&amp;#39;&lt;br&gt;
&amp;gt; &amp;gt; it does work.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Thanks in advance.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Henjo&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/form-always-goes-to-index.php-tp26529532s27240p26531414.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531343</id>
	<title>jQuery Slider - disable keyboard control</title>
	<published>2009-11-26T07:51:41Z</published>
	<updated>2009-11-26T07:51:41Z</updated>
	<author>
		<name>akitainu27</name>
	</author>
	<content type="html">Can slider keyboard control be disabled for good without disabling the slider?
&lt;br&gt;Thanks.</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jQuery-Slider---disable-keyboard-control-tp26531343s27240p26531343.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531041</id>
	<title>Re: Issue with simplemodal plugin and absolute positioned  content</title>
	<published>2009-11-26T07:28:01Z</published>
	<updated>2009-11-26T07:28:01Z</updated>
	<author>
		<name>Eric Martin-3</name>
	</author>
	<content type="html">Eric,
&lt;br&gt;&lt;br&gt;I don't have IE6 installed (just got a new laptop with windows 7), but
&lt;br&gt;I wasn't able to reproduce the issue in IE8 compatibility mode.
&lt;br&gt;SimpleModal only styles the dialog element, so I'm not sure why that
&lt;br&gt;would be affecting other divs on your page...
&lt;br&gt;&lt;br&gt;-Eric
&lt;br&gt;&lt;br&gt;On Nov 26, 4:50 am, Eric Getchell &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26531041&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eric.getch...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I am having an issue with the simplemodal plugin that I’m hoping
&lt;br&gt;&amp;gt; someone will have a solution for – or at least tell me what is
&lt;br&gt;&amp;gt; happening.  I have a layout which uses absolute divs to provide a
&lt;br&gt;&amp;gt; three-column liquid layout.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In IE 6 and 7, when simplemodal fires, any div that has both a left
&lt;br&gt;&amp;gt; and right style defined (providing the liquid portion of the layout)
&lt;br&gt;&amp;gt; collapses to a width of 1 pixel.  Any div that only has a left/right
&lt;br&gt;&amp;gt; element and a width defined behaves correctly.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Adding a conditional width to the liquid portion of the layout makes
&lt;br&gt;&amp;gt; IE behave correctly, but the content is no longer liquid.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Below is the simplest piece of sample code I could produce that shows
&lt;br&gt;&amp;gt; the behavior.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help would be appreciated – I’ve spent several days trying to
&lt;br&gt;&amp;gt; solve this issue with no luck so far.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Eric Getchell
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;gt;   &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;jquery-1.3.2.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;jquery.simplemodal-1.3.3.js&amp;quot;&amp;gt;&amp;lt;/
&lt;br&gt;&amp;gt; script&amp;gt;
&lt;br&gt;&amp;gt;  &amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; * {
&lt;br&gt;&amp;gt;         padding: 0;
&lt;br&gt;&amp;gt;         margin: 0;
&lt;br&gt;&amp;gt;   }
&lt;br&gt;&amp;gt;  body {
&lt;br&gt;&amp;gt;     overflow: auto;
&lt;br&gt;&amp;gt;     height: 100%;
&lt;br&gt;&amp;gt;     width: 100%;
&lt;br&gt;&amp;gt;  }
&lt;br&gt;&amp;gt; #header-left
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;         border: 1px solid blue;
&lt;br&gt;&amp;gt;         position: absolute;
&lt;br&gt;&amp;gt;     top: 0px;
&lt;br&gt;&amp;gt;     left: 0px;
&lt;br&gt;&amp;gt;     width: 300px;
&lt;br&gt;&amp;gt;     height: 83px;
&lt;br&gt;&amp;gt;     overflow: hidden;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #header-right
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;         border: 1px solid red;
&lt;br&gt;&amp;gt;         position: absolute;
&lt;br&gt;&amp;gt;     top: 0px;
&lt;br&gt;&amp;gt;     /* Defining oth left and right in IE will collapse content when
&lt;br&gt;&amp;gt; simplemodal fires.*/
&lt;br&gt;&amp;gt;     left: 302px;
&lt;br&gt;&amp;gt;     right: 0px;
&lt;br&gt;&amp;gt;     height: 83px;
&lt;br&gt;&amp;gt;     overflow: hidden;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; #main
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;     position: absolute;
&lt;br&gt;&amp;gt;     top: 205px;
&lt;br&gt;&amp;gt;     left: 151px;
&lt;br&gt;&amp;gt;     right: 15px;
&lt;br&gt;&amp;gt;     bottom: 35px;
&lt;br&gt;&amp;gt;     overflow: auto;
&lt;br&gt;&amp;gt; &amp;lt;/style&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; function showModal()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;         $(&amp;quot;#dialogContent&amp;quot;).modal({
&lt;br&gt;&amp;gt;                 overlay:80,
&lt;br&gt;&amp;gt;                 overlayCss: {backgroundColor:&amp;quot;#000&amp;quot;},
&lt;br&gt;&amp;gt;                 containerCss: {'background-color':'#fff', 'padding':'5px',
&lt;br&gt;&amp;gt; 'border':'2px solid black'}
&lt;br&gt;&amp;gt;         });}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;div&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;div id=&amp;quot;header-left&amp;quot;&amp;gt;This is a fixed region&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;div id=&amp;quot;header-right&amp;quot;&amp;gt;This is a liquid region. This collapses in IE&amp;lt;/
&lt;br&gt;&amp;gt; div&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;div id=&amp;quot;main&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; onclick=&amp;quot;javascript:showModal();&amp;quot;&amp;gt;Launch&amp;lt;/
&lt;br&gt;&amp;gt; a&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;         &amp;lt;div id=&amp;quot;dialogContent&amp;quot; style=&amp;quot;display:none&amp;quot;&amp;gt;This is the modal
&lt;br&gt;&amp;gt; content&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/body&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/html&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issue-with-simplemodal-plugin-and-absolute-positioned--content-tp26529033s27240p26531041.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531101</id>
	<title>[Superfish 1.4.8] changing position of folded out menus</title>
	<published>2009-11-26T06:55:44Z</published>
	<updated>2009-11-26T06:55:44Z</updated>
	<author>
		<name>Michael Ludwig-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I got it to work, following is the solution:
&lt;br&gt;Simply put
&lt;br&gt;&lt;br&gt;========================================
&lt;br&gt;.sf-menu {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; line-height:		2.5em;
&lt;br&gt;}
&lt;br&gt;========================================
&lt;br&gt;&lt;br&gt;to change the line-height of the menubar and additionally to control
&lt;br&gt;the
&lt;br&gt;distance of the submenus to the menu bar just add the top:
&lt;br&gt;&lt;br&gt;========================================
&lt;br&gt;.sf-menu li:hover ul,
&lt;br&gt;.sf-menu li.sfHover ul {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left:			0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top:			2.5em;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; z-index:		99;
&lt;br&gt;}
&lt;br&gt;========================================
&lt;br&gt;&lt;br&gt;Michael
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/-Superfish-1.4.8--changing-position-of-folded-out-menus-tp26531101s27240p26531101.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26530272</id>
	<title>Re: form always goes to index.php</title>
	<published>2009-11-26T06:30:45Z</published>
	<updated>2009-11-26T06:30:45Z</updated>
	<author>
		<name>Henjo Hoeksma</name>
	</author>
	<content type="html">That would be like a workable trick. Is this something common?
&lt;br&gt;&lt;br&gt;On Nov 26, 2:40 pm, waseem sabjee &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;waseemsab...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; you dont need to you a form.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; set up the following html
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;name&amp;quot; /&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class='submitform&amp;quot;&amp;gt;Submit&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; have the follwoing jQUery
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $(function() {
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; var btn_submit = $(&amp;quot;.submitform&amp;quot;);
&lt;br&gt;&amp;gt; var txt_name = $(&amp;quot;.name&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; btn_submit.click(function(e) {
&lt;br&gt;&amp;gt; e.preventDefault();
&lt;br&gt;&amp;gt; top.location = index.php?name=&amp;quot;+txt_name.val();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; });
&lt;br&gt;&amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; it kinda works just like a form :)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; you can access the values via phph $_GET[] as well.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Nov 26, 2009 at 3:35 PM, Henjo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530272&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henjohoek...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; a form that has an action to an index.php?id=value is submitted
&lt;br&gt;&amp;gt; &amp;gt; through jquery with $('form').submit() .
&lt;br&gt;&amp;gt; &amp;gt; Somehow it always goes to the plain index.php adding the values behind
&lt;br&gt;&amp;gt; &amp;gt; it like: index.php?myFormValue=value .
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I don't get any errors in the debug console (FF) or the Error Console.
&lt;br&gt;&amp;gt; &amp;gt; How can I get this to work properly?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; When I mod_rewrite in index.php?id=value to - for example - 'results/'
&lt;br&gt;&amp;gt; &amp;gt; it does work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks in advance.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Henjo
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/form-always-goes-to-index.php-tp26529532s27240p26530272.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26530164</id>
	<title>Re: Re: Cancel Selected An Item of Selectable</title>
	<published>2009-11-26T06:24:46Z</published>
	<updated>2009-11-26T06:24:46Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">This is not currently supported. You can track progress here:&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://dev.jqueryui.com/ticket/4205&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.jqueryui.com/ticket/4205&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;- Richard&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;
On Wed, Nov 25, 2009 at 9:59 PM, He Jun-Jie &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530164&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;junjie.he@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;&quot;&gt;
Thank you for replying my question. My situation is very easy I just&lt;br&gt;
want to ask whether the jQuery ui selectable provides a way to&lt;br&gt;
unselected one item by doing ctrl+click.&lt;br&gt;
Here is the sample: &lt;a href=&quot;http://jsbin.com/ujile&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://jsbin.com/ujile&lt;/a&gt;&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
On 11月25日, 上午11时59分, &amp;quot;Richard D. Worth&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530164&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rdwo...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; We&amp;#39;d be happy to help you over here:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://groups.google.com/group/jquery-ui&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;lt;&lt;a href=&quot;http://groups.google.com/group/jquery-ui&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui&lt;/a&gt;&amp;gt;Please post a live sample page&lt;br&gt;
&amp;gt; showing the problem. If you don&amp;#39;t have a way to host one, please create one&lt;br&gt;
&amp;gt; on &lt;a href=&quot;http://jsbin.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;jsbin.com&lt;/a&gt;:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://jsbin.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://jsbin.com/&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; - Richard&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;/div&gt;&lt;div class=&quot;im&quot;&gt;&amp;gt; On Tue, Nov 24, 2009 at 12:56 AM, I&amp;#39;m Jack &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26530164&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;junjie...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt; I used jQuery ui selectable function on my web page. So long it works&lt;br&gt;
&amp;gt; &amp;gt; fine, but I find a problem that if we’ve already selected some items,&lt;br&gt;
&amp;gt; &amp;gt; and I want to cancel selected one item of them, how could we do? I try&lt;br&gt;
&amp;gt; &amp;gt; to bind a click function to the elements to remove the style of ui-&lt;br&gt;
&amp;gt; &amp;gt; selected, but it doesn’t work at all. It’s so strange. Guys, could you&lt;br&gt;
&lt;/div&gt;&amp;gt; &amp;gt; help me in some way?- 隐藏被引用文字 -&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; - 显示引用的文字 -&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cancel-Selected-An-Item-of-Selectable-tp26496418s27240p26530164.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531103</id>
	<title>Superfish jQuery menu plugin RTL support</title>
	<published>2009-11-26T05:59:48Z</published>
	<updated>2009-11-26T05:59:48Z</updated>
	<author>
		<name>Vlad Shapiro</name>
	</author>
	<content type="html">Ahoy!
&lt;br&gt;&lt;br&gt;I'm trying to adjust Superfish nav-bar style menu for RTL'ed Hebrew
&lt;br&gt;website,
&lt;br&gt;&lt;br&gt;Example:
&lt;br&gt;&lt;a href=&quot;http://users.tpg.com.au/j_birch/plugins/superfish/#sample4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://users.tpg.com.au/j_birch/plugins/superfish/#sample4&lt;/a&gt;&lt;br&gt;&lt;br&gt;but no success so far, maybe someone already have this solved?
&lt;br&gt;Any help will be most appreciated!
&lt;br&gt;&lt;br&gt;Best regards,
&lt;br&gt;Vlad.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Superfish-jQuery-menu-plugin-RTL-support-tp26531103s27240p26531103.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529823</id>
	<title>Re: Re: superfish navbar issue in Afterburner or JA-Purity  Templates</title>
	<published>2009-11-26T05:58:46Z</published>
	<updated>2009-11-26T05:58:46Z</updated>
	<author>
		<name>Charlie Tomlinson</name>
	</author>
	<content type="html">&lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD HTML 4.01 Transitional//EN&quot;&gt;
&lt;html&gt;
&lt;head&gt;
&lt;/head&gt;
&lt;body bgcolor=&quot;#ffffff&quot; text=&quot;#000066&quot;&gt;
what you are discovering is the root of most problems&amp;nbsp; installing one
menu in any template with an existing menu will run into css conflicts.
The majority of the issues that pop up in this group regarding
superfish stem from Joomla installs and the exact situation you are
running into&lt;br&gt;
&lt;br&gt;
Without using DOM inspectors like Firebug it is almost completely trial
and error trying to figure out which rules take precedence for each
element or pseudo class ( like hover). &lt;br&gt;
&lt;br&gt;
if you haven't already done so install Firebug and you will be able to
quickly see the inherited rules for each part of the menu&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
xantof wrote:
&lt;blockquote id=&quot;mid_1fab45a2-441c-44ba-9081-6dcfda080d7b_l2g2000yqd_googlegroups_com&quot; cite=&quot;mid:1fab45a2-441c-44ba-9081-6dcfda080d7b@l2g2000yqd.googlegroups.com&quot; type=&quot;cite&quot;&gt;
  &lt;pre wrap=&quot;&quot;&gt;This is a progress report on finding a solution :

If all CSS pertaining to the NAV position in the Template's style
sheet are commented out, then it works.

This is a dirty solution and I would like to find the root of the
problem.  I think it has to do, at least in part with the WIDTH
parameter.

I am progressing with learning CSS, understanding JQuery and overall
trying to figure out how all those files interact to give out the web
page I want.

I still find it hard to follow CSS priorities across the different
stylesheet and identifying the proper Class to modify.

This is where I was hoping to get help.

Keep you all posted.

  &lt;/pre&gt;
&lt;/blockquote&gt;
&lt;br&gt;
&lt;/body&gt;
&lt;/html&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/superfish-navbar-issue-in-Afterburner-or-JA-Purity-Templates-tp26427450s27240p26529823.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529581</id>
	<title>Re: form always goes to index.php</title>
	<published>2009-11-26T05:40:29Z</published>
	<updated>2009-11-26T05:40:29Z</updated>
	<author>
		<name>waseem sabjee</name>
	</author>
	<content type="html">you dont need to you a form.&lt;br&gt;&lt;br&gt;set up the following html&lt;br&gt;&lt;br&gt;&amp;lt;input type=&amp;quot;text&amp;quot; class=&amp;quot;name&amp;quot; /&amp;gt;&lt;br&gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;#39;submitform&amp;quot;&amp;gt;Submit&amp;lt;/a&amp;gt;&lt;br&gt;&lt;br&gt;have the follwoing jQUery&lt;br&gt;
&lt;br&gt;$(function() {&lt;br&gt;&lt;br&gt;var btn_submit = $(&amp;quot;.submitform&amp;quot;);&lt;br&gt;var txt_name = $(&amp;quot;.name&amp;quot;);&lt;br&gt;&lt;br&gt;btn_submit.click(function(e) {&lt;br&gt;e.preventDefault();&lt;br&gt;top.location = index.php?name=&amp;quot;+txt_name.val();&lt;br&gt;
});&lt;br&gt;&lt;br&gt;});&lt;br&gt;&lt;br&gt;&lt;br&gt;it kinda works just like a form :)&lt;br&gt;&lt;br&gt;you can access the values via phph $_GET[] as well.&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Nov 26, 2009 at 3:35 PM, Henjo &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26529581&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henjohoeksma@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Hi,&lt;br&gt;
&lt;br&gt;
a form that has an action to an index.php?id=value is submitted&lt;br&gt;
through jquery with $(&amp;#39;form&amp;#39;).submit() .&lt;br&gt;
Somehow it always goes to the plain index.php adding the values behind&lt;br&gt;
it like: index.php?myFormValue=value .&lt;br&gt;
&lt;br&gt;
I don&amp;#39;t get any errors in the debug console (FF) or the Error Console.&lt;br&gt;
How can I get this to work properly?&lt;br&gt;
&lt;br&gt;
When I mod_rewrite in index.php?id=value to - for example - &amp;#39;results/&amp;#39;&lt;br&gt;
it does work.&lt;br&gt;
&lt;br&gt;
Thanks in advance.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
Henjo&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/form-always-goes-to-index.php-tp26529532s27240p26529581.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529532</id>
	<title>form always goes to index.php</title>
	<published>2009-11-26T05:35:51Z</published>
	<updated>2009-11-26T05:35:51Z</updated>
	<author>
		<name>Henjo Hoeksma</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;a form that has an action to an index.php?id=value is submitted
&lt;br&gt;through jquery with $('form').submit() .
&lt;br&gt;Somehow it always goes to the plain index.php adding the values behind
&lt;br&gt;it like: index.php?myFormValue=value .
&lt;br&gt;&lt;br&gt;I don't get any errors in the debug console (FF) or the Error Console.
&lt;br&gt;How can I get this to work properly?
&lt;br&gt;&lt;br&gt;When I mod_rewrite in index.php?id=value to - for example - 'results/'
&lt;br&gt;it does work.
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&lt;br&gt;Henjo
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/form-always-goes-to-index.php-tp26529532s27240p26529532.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529352</id>
	<title>Please help to check the form...</title>
	<published>2009-11-26T05:20:36Z</published>
	<updated>2009-11-26T05:20:36Z</updated>
	<author>
		<name>donb-2</name>
	</author>
	<content type="html">'Tarding' &amp;nbsp;was such an appropriate change to the subject, for that
&lt;br&gt;post. &amp;nbsp;But let's change it back now.
&lt;br&gt;&lt;br&gt;On Nov 25, 10:58 pm, forextradingevo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26529352&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;forextradingev...@...&lt;/a&gt;&amp;gt;
&lt;br&gt;wrote:
&lt;br&gt;&amp;gt; u should google it and may be u can find some from there or u can visit here
&lt;br&gt;&amp;gt; to get some help
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----&lt;a href=&quot;http://www.forextradingevo.comforex&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.forextradingevo.comforex&lt;/a&gt;&amp;nbsp;trading
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:&lt;a href=&quot;http://old.nabble.com/Please-help-to-check-the-form...-tp26511455s272&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Please-help-to-check-the-form...-tp26511455s272&lt;/a&gt;...
&lt;br&gt;&amp;gt; Sent from the jQuery General Discussion mailing list archive at Nabble.com.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-help-to-check-the-form...-tp26511455s27240p26529352.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531094</id>
	<title>Best JQuery plugin for gantt and other charts/graphs?</title>
	<published>2009-11-26T05:10:37Z</published>
	<updated>2009-11-26T05:10:37Z</updated>
	<author>
		<name>Stodge</name>
	</author>
	<content type="html">Just wondering which jquery plugin you prefer for generating gantt
&lt;br&gt;charts and other graphs. I'm busy scanning through the plugins,
&lt;br&gt;checking out the demos but I was hoping for a few pointers so I could
&lt;br&gt;hone in on the best ones. Thanks
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Best-JQuery-plugin-for-gantt-and-other-charts-graphs--tp26531094s27240p26531094.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529196</id>
	<title>Re: jquery toggle Ie7 problem</title>
	<published>2009-11-26T05:07:09Z</published>
	<updated>2009-11-26T05:07:09Z</updated>
	<author>
		<name>Thomas-227</name>
	</author>
	<content type="html">The images are there, they're just for some reason moved to the left.
&lt;br&gt;If you assign a margin-left of 50px to your first image, you'll see
&lt;br&gt;that they are actually visible.
&lt;br&gt;&lt;br&gt;Seems to be a style issue (maybe IE-related), rather than a jquery
&lt;br&gt;issue.
&lt;br&gt;&lt;br&gt;Additionally, your page throws a handful of validation errrors. While
&lt;br&gt;I doubt that the errors on your page are responsible for this effect,
&lt;br&gt;there's still a slight possibility that they are. Especially the one
&lt;br&gt;missing closing &amp;lt;/p&amp;gt; tag could be a problem.
&lt;br&gt;&lt;br&gt;They're all easy to fix, so that should be your first approach.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Nov 25, 1:16 pm, Gkrusemann &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26529196&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;i...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; someone?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context:&lt;a href=&quot;http://old.nabble.com/jquery-toggle-Ie7-problem-tp26481964s27240p2651&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/jquery-toggle-Ie7-problem-tp26481964s27240p2651&lt;/a&gt;...
&lt;br&gt;&amp;gt; Sent from the jQuery General Discussion mailing list archive at Nabble.com.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jquery-toggle-Ie7-problem-tp26481964s27240p26529196.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26529033</id>
	<title>Issue with simplemodal plugin and absolute positioned  content</title>
	<published>2009-11-26T04:50:38Z</published>
	<updated>2009-11-26T04:50:38Z</updated>
	<author>
		<name>Eric Getchell</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I am having an issue with the simplemodal plugin that I’m hoping
&lt;br&gt;someone will have a solution for – or at least tell me what is
&lt;br&gt;happening. &amp;nbsp;I have a layout which uses absolute divs to provide a
&lt;br&gt;three-column liquid layout.
&lt;br&gt;&lt;br&gt;In IE 6 and 7, when simplemodal fires, any div that has both a left
&lt;br&gt;and right style defined (providing the liquid portion of the layout)
&lt;br&gt;collapses to a width of 1 pixel. &amp;nbsp;Any div that only has a left/right
&lt;br&gt;element and a width defined behaves correctly.
&lt;br&gt;&lt;br&gt;Adding a conditional width to the liquid portion of the layout makes
&lt;br&gt;IE behave correctly, but the content is no longer liquid.
&lt;br&gt;&lt;br&gt;Below is the simplest piece of sample code I could produce that shows
&lt;br&gt;the behavior.
&lt;br&gt;&lt;br&gt;Any help would be appreciated – I’ve spent several days trying to
&lt;br&gt;solve this issue with no luck so far.
&lt;br&gt;&lt;br&gt;Eric Getchell
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://
&lt;br&gt;www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;title&amp;gt;&amp;lt;/title&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;jquery-1.3.2.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;jquery.simplemodal-1.3.3.js&amp;quot;&amp;gt;&amp;lt;/
&lt;br&gt;script&amp;gt;
&lt;br&gt;&amp;nbsp;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;
&lt;br&gt;* {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&amp;nbsp;body {
&lt;br&gt;&amp;nbsp; &amp;nbsp; overflow: auto;
&lt;br&gt;&amp;nbsp; &amp;nbsp; height: 100%;
&lt;br&gt;&amp;nbsp; &amp;nbsp; width: 100%;
&lt;br&gt;&amp;nbsp;}
&lt;br&gt;#header-left
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border: 1px solid blue;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: absolute;
&lt;br&gt;&amp;nbsp; &amp;nbsp; top: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; left: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; width: 300px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; height: 83px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; overflow: hidden;
&lt;br&gt;&lt;br&gt;}
&lt;br&gt;&lt;br&gt;#header-right
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border: 1px solid red;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: absolute;
&lt;br&gt;&amp;nbsp; &amp;nbsp; top: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; /* Defining oth left and right in IE will collapse content when
&lt;br&gt;simplemodal fires.*/
&lt;br&gt;&amp;nbsp; &amp;nbsp; left: 302px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; right: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; height: 83px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; overflow: hidden;
&lt;br&gt;}
&lt;br&gt;#main
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; position: absolute;
&lt;br&gt;&amp;nbsp; &amp;nbsp; top: 205px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; left: 151px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; right: 15px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; bottom: 35px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; overflow: auto;
&lt;br&gt;&amp;lt;/style&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;function showModal()
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#dialogContent&amp;quot;).modal({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overlay:80,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overlayCss: {backgroundColor:&amp;quot;#000&amp;quot;},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; containerCss: {'background-color':'#fff', 'padding':'5px',
&lt;br&gt;'border':'2px solid black'}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;}
&lt;br&gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;lt;/head&amp;gt;
&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;header-left&amp;quot;&amp;gt;This is a fixed region&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;header-right&amp;quot;&amp;gt;This is a liquid region. This collapses in IE&amp;lt;/
&lt;br&gt;div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;main&amp;quot;&amp;gt;&amp;lt;a href=&amp;quot;#&amp;quot; onclick=&amp;quot;javascript:showModal();&amp;quot;&amp;gt;Launch&amp;lt;/
&lt;br&gt;a&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;dialogContent&amp;quot; style=&amp;quot;display:none&amp;quot;&amp;gt;This is the modal
&lt;br&gt;content&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Issue-with-simplemodal-plugin-and-absolute-positioned--content-tp26529033s27240p26529033.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531100</id>
	<title>Validate / Remote</title>
	<published>2009-11-26T04:30:53Z</published>
	<updated>2009-11-26T04:30:53Z</updated>
	<author>
		<name>RCLumbriga</name>
	</author>
	<content type="html">Hi.. &amp;nbsp;Sory the really bad english
&lt;br&gt;&lt;br&gt;I have one problem with remote in Jquery.validate
&lt;br&gt;&lt;br&gt;I do this
&lt;br&gt;&lt;br&gt;&amp;nbsp;cusuario:{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; required: true, minlength: 5,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; remote: &amp;quot;verifica_user.php&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },
&lt;br&gt;&lt;br&gt;Now &amp;nbsp;i whant know how the script verifica_user.php will recive the
&lt;br&gt;information..
&lt;br&gt;&lt;br&gt;----
&lt;br&gt;I still trying make one script when any user go create on account,,
&lt;br&gt;first will verify if this account exist. If exist will appear on
&lt;br&gt;message.. This accound still in use. Please choice another..
&lt;br&gt;&lt;br&gt;But i don't know how get the user still typing and pass from php
&lt;br&gt;script, where will do this comparation..
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validate---Remote-tp26531100s27240p26531100.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525951</id>
	<title>Re: Read CSV files with jQUery</title>
	<published>2009-11-26T03:23:32Z</published>
	<updated>2009-11-26T03:23:32Z</updated>
	<author>
		<name>ramanathan12</name>
	</author>
	<content type="html">&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;pedramphp wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;hi did u got syntax for url in csv2html ??????
&lt;br&gt;&lt;br&gt;&lt;br&gt;How Can I read CSV files with jQUery
&lt;br&gt;&lt;a href=&quot;http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=X&amp;f=sl1d1t1ba&amp;e=.csv&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=X&amp;f=sl1d1t1ba&amp;e=.csv&lt;/a&gt;&lt;br&gt;for Example above code ...
&lt;br&gt;I want to COnvert Iraninan RIal to American Dollar online in my
&lt;br&gt;Website ....
&lt;br&gt;has anybody any idea for this ...
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Read-CSV-files-with-jQUery-tp18659264s27240p26525951.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525832</id>
	<title>Re: Read CSV files with jQUery</title>
	<published>2009-11-26T03:20:37Z</published>
	<updated>2009-11-26T03:20:37Z</updated>
	<author>
		<name>ramanathan12</name>
	</author>
	<content type="html">csv2table('./data/Book12.csv');
&lt;br&gt;&lt;br&gt;&lt;br&gt;can i use yahoo &lt;a href=&quot;http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=X&amp;f=sl1d1t1ba&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.finance.yahoo.com/d/quotes.csv?s=USDIRR=X&amp;f=sl1d1t1ba&lt;/a&gt;&amp;nbsp;to get csv
&lt;br&gt;&amp;nbsp;instead of &amp;nbsp;'./data/Book12.csv'
&lt;br&gt;&lt;br&gt;i tried like this &amp;nbsp;
&lt;br&gt;&amp;nbsp; $('#view0').csv2table('&lt;a href=&quot;http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXIC&amp;f=sl1d1t1c1ohgv&amp;e=.csv');&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://download.finance.yahoo.com/d/quotes.csv?s=%5EIXIC&amp;f=sl1d1t1c1ohgv&amp;e=.csv');&lt;/a&gt;&lt;br&gt;&lt;br&gt;but no use
&lt;br&gt;&lt;br&gt;&lt;br&gt;can u send me syntax for url ....</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Read-CSV-files-with-jQUery-tp18659264s27240p26525832.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531097</id>
	<title>Accordion, fieldset and selectors question</title>
	<published>2009-11-26T02:41:00Z</published>
	<updated>2009-11-26T02:41:00Z</updated>
	<author>
		<name>Bruce MacKay-3</name>
	</author>
	<content type="html">Hello folks,
&lt;br&gt;&lt;br&gt;I have an operational accordion based on a series of fieldset tags
&lt;br&gt;(the content) and h6 tags (the triggers).
&lt;br&gt;&lt;br&gt;It is initiated by:
&lt;br&gt;&lt;br&gt;$('.accord &amp;gt; h6').click(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).next('fieldset').slideToggle('fast').siblings
&lt;br&gt;('fieldset:visible').slideUp('fast');
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;The trigger tags are set up as
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; h6 - span - Trigger title - /span - /h6
&lt;br&gt;&lt;br&gt;I want to add a class to the current h6 tag that will result in an
&lt;br&gt;&amp;quot;open folder&amp;quot; image to appear next to tag when its associated fieldset
&lt;br&gt;is open, and have that class removed when it or another h6 tag is
&lt;br&gt;clicked.
&lt;br&gt;&lt;br&gt;I can add the class easily enough - but I can't work out the code/
&lt;br&gt;selectors to remove the class when the clicked current trigger title
&lt;br&gt;is re-clicked (to close the fieldset) or another trigger title is
&lt;br&gt;clicked (to open its associated fieldset.
&lt;br&gt;&lt;br&gt;$('.accord &amp;gt; h6').click(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).addClass('expand_group');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).next('fieldset').slideToggle('fast').siblings
&lt;br&gt;('fieldset:visible').slideUp('fast');
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;I'd &amp;nbsp;really appreciate some direction to a solution if possible.
&lt;br&gt;&lt;br&gt;Thanks, Bruce
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Accordion%2C-fieldset-and-selectors-question-tp26531097s27240p26531097.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26531096</id>
	<title>csv2table</title>
	<published>2009-11-26T02:21:19Z</published>
	<updated>2009-11-26T02:21:19Z</updated>
	<author>
		<name>ramanathan12</name>
	</author>
	<content type="html">I am new to jquery.... Its nice
&lt;br&gt;in csv2table i need to get values dynamically from a particular url
&lt;br&gt;everyminute ...
&lt;br&gt;i dont know how to get from particular url ( &amp;nbsp; www.websitename.com?asdfasdf.csv
&lt;br&gt;) and generate table for that value.
&lt;br&gt;&lt;br&gt;$(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; $('#view1').csv2table('book12.csv');
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;any help will be appreciated ..
&lt;br&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/csv2table-tp26531096s27240p26531096.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26525336</id>
	<title>Re: custom event firing</title>
	<published>2009-11-26T02:07:43Z</published>
	<updated>2009-11-26T02:07:43Z</updated>
	<author>
		<name>stworthy</name>
	</author>
	<content type="html">The function of your plugin is to trigger the event 'myEvent'.
&lt;br&gt;&lt;br&gt;The first time you invoke the hilight() method but now the 'myEvent' event not bind to '#myDiv',so you cannot get the alert information.
&lt;br&gt;The second time you click, the '#myDiv' has bind 'myEvent' one time, so you get the alert information one time.
&lt;br&gt;The third time you click, the '#myDiv' has bind 'myEvent' two time, so you get two alert information.
&lt;br&gt;&lt;br&gt;To solve the problem, you should bind the 'myEvent' only once. 
&lt;br&gt;&lt;br&gt;$('#myDiv').bind('myEvent',function(e){
&lt;br&gt;alert('event fired');
&lt;br&gt;});
&lt;br&gt;$('#myButton').click(function(){
&lt;br&gt;$('#myDiv').hilight();
&lt;br&gt;})
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Allen123 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi all,
&lt;br&gt;&lt;br&gt;I am learning how to author jquery plug in and trying to fire a custom event using trigger and bind. However, for some reason, when I click the button first time, the custom event is not called. If I click again, the event will execute once. If I click the third time, the event will execute twice. Can you guys tell me what's wrong with my code? Really appreciate your help.
&lt;br&gt;&lt;br&gt;my plug in
&lt;br&gt;&lt;br&gt;(function($) {
&lt;br&gt;&amp;nbsp; $.fn.hilight = function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return this.each(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var $this = $(this);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //hightlight
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //call trigger
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $this.trigger('myEvent');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; })
&lt;br&gt;&amp;nbsp; };
&lt;br&gt;&lt;br&gt;})(jQuery);
&lt;br&gt;&lt;br&gt;my html page
&lt;br&gt;&lt;br&gt;&amp;nbsp;$(document).ready(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; $('#myButton').click(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('#myDiv').hilight().bind('myEvent', function(e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert('event fired');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;})
&lt;br&gt;&amp;nbsp;});
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/custom-event-firing-tp26524737s27240p26525336.html" />
</entry>

</feed>
