<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-27240</id>
	<title>Nabble - jQuery</title>
	<updated>2009-12-19T01:55:59Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/jQuery-f27240.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jQuery-f27240.html" />
	<subtitle type="html">Discussion of the &lt;a href=&quot;http://jquery.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;JQuery&lt;/a&gt;&amp;nbsp;javascript library. 
&lt;br&gt;jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. jQuery is designed to change the way that you write JavaScript.</subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-26853826</id>
	<title>imgPreview</title>
	<published>2009-12-19T01:55:59Z</published>
	<updated>2009-12-19T01:55:59Z</updated>
	<author>
		<name>tommytomato</name>
	</author>
	<content type="html">Hi all
&lt;br&gt;&lt;br&gt;I've been working on this all day today..I've followed this page, I'm working on Website links + previews
&lt;br&gt;&lt;a href=&quot;http://james.padolsey.com/demos/imgPreview/full/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://james.padolsey.com/demos/imgPreview/full/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Here's my test which works OK
&lt;br&gt;&lt;a href=&quot;http://www.rockinghamgateway.com/test/index4.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rockinghamgateway.com/test/index4.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;I'm trying to place the table into another page
&lt;br&gt;&lt;a href=&quot;http://www.rockinghamgateway.com/test/index2.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.rockinghamgateway.com/test/index2.html&lt;/a&gt;&lt;br&gt;Click on add your site tab, table is also off center too, I cant seem to work out why either ?
&lt;br&gt;&lt;br&gt;when I add the following code to page, it drops every thing else out :roll:
&lt;br&gt;&lt;br&gt;Code: Select all
&lt;br&gt;&amp;nbsp; &amp;nbsp; script src=&amp;quot;img/imgpreview.full.jquery.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;lt;![CDATA[
&lt;br&gt;&amp;nbsp; &amp;nbsp; jQuery.noConflict();
&lt;br&gt;&amp;nbsp; &amp;nbsp; (function($){ 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $('ul#fifth a').imgPreview({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; containerID: 'imgPreviewWithStyles3',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; srcAttr: 'rel',
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; imgCSS: {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Limit preview size:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 200
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // When container is shown:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; onShow: function(link){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('&lt;span&gt;' + link.href + '&lt;/span&gt;').appendTo(this);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // When container hides:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; onHide: function(link){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('span', this).remove();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; })(jQuery);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //]]&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;img/prettify.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;lt;![CDATA[
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; jQuery(function($){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('pre').css({background: '#333'})
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prettyPrint();
&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;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;lt;![CDATA[
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var gaJsHost = ((&amp;quot;https:&amp;quot; == document.location.protocol) ? &amp;quot;&lt;a href=&quot;https://ssl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://ssl&lt;/a&gt;.&amp;quot; : &amp;quot;&lt;a href=&quot;http://www&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www&lt;/a&gt;.&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; document.write(unescape(&amp;quot;%3Cscript src='&amp;quot; + gaJsHost + &amp;quot;google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E&amp;quot;));
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //]]&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //&amp;lt;![CDATA[
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var pageTracker = _gat._getTracker(&amp;quot;UA-3768993-3&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; pageTracker._trackPageview();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //]]&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Can any one tell me why please, ( Merry Xmas too all )
&lt;br&gt;&lt;br&gt;TT&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/imgPreview-tp26853826s27240p26853826.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26853697</id>
	<title>Re: attr() is still very broken in 1.4a1</title>
	<published>2009-12-19T01:30:04Z</published>
	<updated>2009-12-19T01:30:04Z</updated>
	<author>
		<name>DBJDBJ</name>
	</author>
	<content type="html">Oh, how true my daddy was: &amp;quot;Son (he said) always make the manual first
&lt;br&gt;and then give it to the customers. And then son, wait for the dust to
&lt;br&gt;settle. And then my son, then start making, whatever is that thing,
&lt;br&gt;you are selling my son&amp;quot; ...
&lt;br&gt;&lt;br&gt;--DBJ
&lt;br&gt;&lt;br&gt;On Dec 18, 8:30 pm, John Resig &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853697&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jere...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; What about (i)frames?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In that case just use the jQuery inside the (i)frame. I'm fine punting
&lt;br&gt;&amp;gt; on that as well. Optimized for the very-most-common case.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --John
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853697&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853697&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/attr%28%29-is-still-very-broken-in-1.4a1-tp26745175s27240p26853697.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26853547</id>
	<title>How Tooltip API return a jsp page?</title>
	<published>2009-12-19T00:54:05Z</published>
	<updated>2009-12-19T00:54:05Z</updated>
	<author>
		<name>Henry Loke</name>
	</author>
	<content type="html">The tooltip plugin I refer to is &lt;a href=&quot;http://jquery.bassistance.de/tooltip/demo/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jquery.bassistance.de/tooltip/demo/&lt;/a&gt;&lt;br&gt;&lt;br&gt;One of the function is return a HTML tag.
&lt;br&gt;&lt;br&gt;$('#tonus').tooltip({ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; delay: 0, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; showURL: false, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; bodyHandler: function() { 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return $(&amp;quot;&lt;img /&gt;&amp;quot;).attr(&amp;quot;src&amp;quot;, this.src); 
&lt;br&gt;&amp;nbsp; &amp;nbsp; } 
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;Now I have a FIXED and LONG ( Table of Legend )html tag to return from function above.
&lt;br&gt;I try to put the html to another jsp. Then point the return to that jsp as below:
&lt;br&gt;&lt;br&gt;Example:
&lt;br&gt;&lt;br&gt;$('#tonus').tooltip({ 
&lt;br&gt;&amp;nbsp; &amp;nbsp; delay: 0, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; showURL: false, 
&lt;br&gt;&amp;nbsp; &amp;nbsp; bodyHandler: function() { 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return &amp;quot;&amp;lt;jsp:include page='legend-table.jsp'/&amp;gt;&amp;quot;
&lt;br&gt;&amp;nbsp; &amp;nbsp; } 
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;The content of the legend-table.jsp as below:
&lt;br&gt;&lt;br&gt;&amp;lt;table&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Blue&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Water&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Red&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Fire&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;Green&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Tree&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;tr&amp;gt;&amp;lt;td&amp;gt;White&amp;lt;/td&amp;gt;&amp;lt;td&amp;gt;Cloud&amp;lt;/td&amp;gt;&amp;lt;/tr&amp;gt;
&lt;br&gt;.......
&lt;br&gt;&amp;lt;/table&amp;gt;
&lt;br&gt;&lt;br&gt;The code above not working.... I guess the bodyHandler function cannot use include page. ANy Idea?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;-fsloke&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-Tooltip-API-return-a-jsp-page--tp26853547s27240p26853547.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26853542</id>
	<title>Re: IE stops recurring ajax call</title>
	<published>2009-12-19T00:50:07Z</published>
	<updated>2009-12-19T00:50:07Z</updated>
	<author>
		<name>Henjo Hoeksma</name>
	</author>
	<content type="html">Hi Scott,
&lt;br&gt;&lt;br&gt;well - it actually has nothing to do with chained requests in general.
&lt;br&gt;This chained request did the request on a whole different tag (on the
&lt;br&gt;#option instead of fieldset), that was the problem.
&lt;br&gt;&lt;br&gt;Henjo
&lt;br&gt;&lt;br&gt;On Dec 16, 3:43 pm, Scott Sauyet &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853542&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;scott.sau...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; On Dec 16, 4:14 am, Henjo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853542&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;
&lt;br&gt;&amp;gt; &amp;gt; here is what I changed in order to get it to work in IE.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Not working:
&lt;br&gt;&amp;gt; &amp;gt; jQuery('#option1').hide('fast').next().show('fast').bind
&lt;br&gt;&amp;gt; &amp;gt; ('change',function(){ ... }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Working:
&lt;br&gt;&amp;gt; &amp;gt; jQuery('#option1').hide('fast').next().show('fast');
&lt;br&gt;&amp;gt; &amp;gt; jQuery('#productWizard #option2 select').bind('change',function()
&lt;br&gt;&amp;gt; &amp;gt; { ... }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; My conclusion: IE is not capable of putting a chained ajax request
&lt;br&gt;&amp;gt; &amp;gt; altogether nicely...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Since I've done plenty of chained requests like that, I'd be surprised
&lt;br&gt;&amp;gt; if that's the issue.  I wonder if there are any differences in what
&lt;br&gt;&amp;gt; &amp;quot;next()&amp;quot; in that chain is giving you in IE versus FF.  Not that at
&lt;br&gt;&amp;gt; matters for you since you've got a working solution, but it's
&lt;br&gt;&amp;gt; curious...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm glad you got it working.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;   -- Scott
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/IE-stops-recurring-ajax-call-tp26768622s27240p26853542.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26853535</id>
	<title>Re: Debugging in IE</title>
	<published>2009-12-19T00:47:54Z</published>
	<updated>2009-12-19T00:47:54Z</updated>
	<author>
		<name>Henjo Hoeksma</name>
	</author>
	<content type="html">Hi Mike,
&lt;br&gt;&lt;br&gt;thanks for you reply. You are absolutely right.
&lt;br&gt;Tunnel vision and tiredness are a great combi ;-)
&lt;br&gt;&lt;br&gt;Thanks!
&lt;br&gt;Henjo
&lt;br&gt;&lt;br&gt;On Dec 16, 5:06 pm, Michael Geary &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;m...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm glad you fixed your problem, but I'm certain that the conclusion (&amp;quot;IE
&lt;br&gt;&amp;gt; has trouble with a chained ajax call&amp;quot;) is wrong. In the code you posted in
&lt;br&gt;&amp;gt; the other thread, the chained and non-chained versions are quite different.
&lt;br&gt;&amp;gt; You didn't just cut the chain into parts: the non-chained version uses a
&lt;br&gt;&amp;gt; completely different selector. That is where the problem lies, not in the
&lt;br&gt;&amp;gt; chaining or lack thereof.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Mike
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Dec 15, 2009 at 5:32 AM, Henjo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&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 MorningZ,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; thanks for your thoughts. I didn't even think of that since it has
&lt;br&gt;&amp;gt; &amp;gt; been a couple of weeks ago I built this. Only IE needed to be fixed.
&lt;br&gt;&amp;gt; &amp;gt; I finally was able to get it fixed by putting alerts in to see where
&lt;br&gt;&amp;gt; &amp;gt; it stopped. Apparently IE has trouble with a chained ajax call. I cut
&lt;br&gt;&amp;gt; &amp;gt; the chain into part and then it worked.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks again for your thoughts, I really appreciate it and take to
&lt;br&gt;&amp;gt; &amp;gt; heart what you say!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Henjo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Dec 14, 11:18 pm, MorningZ &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morni...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I would *definitely* start by using the non-minified version of
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; jQuery, as it's 1000x easier to get an idea of what's going on  (i see
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; in the source of the page you are using the min-ed version)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; On Dec 14, 4:31 pm, Henjo &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;henjohoek...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Hey Scott,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; thanks for posting. I will check this out and see if I can find
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; something here...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Henjo
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; On Dec 14, 8:51 pm, &amp;quot;Scott Stewart&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sstwebwo...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; There is a Firebug Lite which runs in IE, it's not nearly as good as
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Firebug, but it's better than nothing (or the &amp;quot;developer tools&amp;quot; in
&lt;br&gt;&amp;gt; &amp;gt; IE8
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; From: &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-en@...&lt;/a&gt; [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853535&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-en@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; &amp;gt; On
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Behalf Of Henjo
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Sent: Monday, December 14, 2009 2:46 PM
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; To: jQuery (English)
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Subject: [jQuery] Debugging in IE
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Hi list,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; I am wondering how to do debugging in IE the best way. I installed
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; fiddler and work with ie8's dev tools.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; The problem is I have a script that runs perfectly in FF, Chrome,
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Safari but not in IE. There the dynamic form wizard. stops after 2
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; loads...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; This is the site I am talking abouthttp://bit.ly/7v8pHu
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Thanks in advance for your tips.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; Henjo
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Debugging-in-IE-tp26783661s27240p26853535.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26853252</id>
	<title>Re: Traversing down</title>
	<published>2009-12-18T23:24:42Z</published>
	<updated>2009-12-18T23:24:42Z</updated>
	<author>
		<name>pedramphp</name>
	</author>
	<content type="html">hey Guys I wrote the plugin pretty nice
&lt;br&gt;I have an example
&lt;br&gt;&lt;a href=&quot;http://pedramtech.com/Development/jqueryPlugins/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pedramtech.com/Development/jqueryPlugins/&lt;/a&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.fn.ClosestChildren = function(expr) {
&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; var $t = $(this);
&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; return $t.is(expr) ? &amp;nbsp;$t : $t.find(expr).eq(0);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; };
&lt;br&gt;&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;nbsp; &amp;nbsp; jQuery(&amp;quot;ul.u-first&amp;quot;).bind(&amp;quot;mouseover mouseout&amp;quot;,function(event){
&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;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(event.target);
&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(event.target).TraverseDown(&amp;quot;ul&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(event.type == &amp;quot;mouseout&amp;quot; )$(event.target).TraverseDown
&lt;br&gt;(&amp;quot;ul&amp;quot;).removeClass(&amp;quot;green&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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; else $(event.target).TraverseDown(&amp;quot;ul&amp;quot;).addClass(&amp;quot;green&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; });
&lt;br&gt;&lt;br&gt;this example finds the closest UL in the Ul.ui-first descendants &amp;nbsp; and
&lt;br&gt;does some action with it ,
&lt;br&gt;I used Event Delegation.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Dec 18, 10:39 am, Pedram &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26853252&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;pedram...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I would like to have Traverse Down and It self Traversing function in
&lt;br&gt;&amp;gt; jQUery how can I make that
&lt;br&gt;&amp;gt; as you all know we have Closest which is traversing up and includes it
&lt;br&gt;&amp;gt; self...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; this is what I have
&lt;br&gt;&amp;gt; $(event.target).find('&amp;gt; a:not(.active)');
&lt;br&gt;&amp;gt; the problem occurs when the event.target is the actual link .
&lt;br&gt;&amp;gt; so any one has an idea an, thanks !!!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Traversing-down-tp26847810s27240p26853252.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852866</id>
	<title>Re: How do I collapse a tab on an link click?</title>
	<published>2009-12-18T21:17:35Z</published>
	<updated>2009-12-18T21:17:35Z</updated>
	<author>
		<name>dbinaz</name>
	</author>
	<content type="html">nevermind. got it.
&lt;br&gt;&lt;br&gt;On Dec 18, 10:24 am, dbinaz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26852866&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;d...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I have been searching around and can't seem to find anything on this.
&lt;br&gt;&amp;gt; What I have right now is this...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;         $('#close1').click(function() { // bind click event to link
&lt;br&gt;&amp;gt;                 $tabs.tabs('select', 1);
&lt;br&gt;&amp;gt;                 return false;
&lt;br&gt;&amp;gt;         });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; and collapsible =true.
&lt;br&gt;&amp;gt; I don't see anything about a toggle event.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Derek
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26852866&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26852866&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-do-I-collapse-a-tab-on-an-link-click--tp26845016s27240p26852866.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852444</id>
	<title>Re: Jquery using Modal Window with user input</title>
	<published>2009-12-18T19:17:51Z</published>
	<updated>2009-12-18T19:17:51Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">You can use the jQuery UI Dialog with the modal option set to true. Here&amp;#39;s an example:&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jqueryui.com/demos/dialog/#modal-form&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jqueryui.com/demos/dialog/#modal-form&lt;/a&gt;&lt;br&gt;&lt;br&gt;- Richard&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Dec 18, 2009 at 10:12 PM, tinypond &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26852444&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;lawrence@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;
&lt;br&gt;
What I am trying to do is the following: I have a webpage with some input&lt;br&gt;
fields, before the user can save the information to a database. I have the&lt;br&gt;
requirement to make the existing page dim and call up a modal window asking&lt;br&gt;
the user whey they made changes. This modal window would have a textbox to&lt;br&gt;
enter why the changes were made along with accept or cancel buttons. If the&lt;br&gt;
accept button  is pressed the information in the textbox needs to get past&lt;br&gt;
back to the webpage so it can then write all changed information along with&lt;br&gt;
the reason why it was changed to the database. If cancel was pressed nothing&lt;br&gt;
would be done.&lt;br&gt;
&lt;br&gt;
Could someone please point me to an example that does something similar to&lt;br&gt;
this or please tell me if this requirement is feasible.&lt;br&gt;
&lt;br&gt;
Thanks in advance for your help.&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-using--Modal-Window-with-user-input-tp26852412s27240p26852412.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://old.nabble.com/Jquery-using--Modal-Window-with-user-input-tp26852412s27240p26852412.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;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jquery-using--Modal-Window-with-user-input-tp26852412s27240p26852444.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852412</id>
	<title>Jquery using  Modal Window with user input</title>
	<published>2009-12-18T19:12:18Z</published>
	<updated>2009-12-18T19:12:18Z</updated>
	<author>
		<name>tinypond</name>
	</author>
	<content type="html">What I am trying to do is the following: I have a webpage with some input fields, before the user can save the information to a database. I have the requirement to make the existing page dim and call up a modal window asking the user whey they made changes. This modal window would have a textbox to enter why the changes were made along with accept or cancel buttons. If the accept button &amp;nbsp;is pressed the information in the textbox needs to get past back to the webpage so it can then write all changed information along with the reason why it was changed to the database. If cancel was pressed nothing would be done. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Could someone please point me to an example that does something similar to this or please tell me if this requirement is feasible.
&lt;br&gt;&lt;br&gt;Thanks in advance for your help. &lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Jquery-using--Modal-Window-with-user-input-tp26852412s27240p26852412.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852329</id>
	<title>Validate Form - how to do NotEqualTo</title>
	<published>2009-12-18T18:22:42Z</published>
	<updated>2009-12-18T18:22:42Z</updated>
	<author>
		<name>JC_NZ</name>
	</author>
	<content type="html">I'm using Jörn Zaefferer's Jquery Form Validation which is great.
&lt;br&gt;&lt;br&gt;However, I needed one extra method/function.
&lt;br&gt;&lt;br&gt;I have some fields which initially have values (e.g. see below)
&lt;br&gt;&lt;br&gt;&amp;lt;input type=&amp;quot;text&amp;quot; name=&amp;quot;First Name&amp;quot; id=&amp;quot;First Name&amp;quot; value=&amp;quot;Enter Name
&lt;br&gt;Here *&amp;quot; /&amp;gt;
&lt;br&gt;&lt;br&gt;So for the validation if the Input First Name's value is equal to
&lt;br&gt;&amp;quot;Enter Name Here*&amp;quot;, this should then be marked as not true therefore
&lt;br&gt;displaying an error mssg and preventing form from being submitted.
&lt;br&gt;&lt;br&gt;Any help would be much appreciated.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Validate-Form---how-to-do-NotEqualTo-tp26852329s27240p26852329.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852327</id>
	<title>autocomplete: extra fields</title>
	<published>2009-12-18T17:27:57Z</published>
	<updated>2009-12-18T17:27:57Z</updated>
	<author>
		<name>Simon Matthews-5</name>
	</author>
	<content type="html">I have a number of fields in a grid which are all using auto
&lt;br&gt;complete. &amp;nbsp;I want the extraParams function to be able to work out
&lt;br&gt;which field I am in so that I can return a differently filtered list.
&lt;br&gt;I don't seem to have access to the input variable? &amp;nbsp;Any clues?
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Simon
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/autocomplete%3A-extra-fields-tp26852327s27240p26852327.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851892</id>
	<title>Re: Usage of CSS Classe ui-widget</title>
	<published>2009-12-18T17:25:13Z</published>
	<updated>2009-12-18T17:25:13Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">We use body { font-size: 62.5%} as a convenience so that 1.1em=11px, 1.3em=13px, etc. You can do the same, or you can change the font size for your font. If you&amp;#39;re using a custom font from ThemeRoller, there&amp;#39;s an option to change the font size. If you&amp;#39;re using a prebuilt theme with a font-size like 1.1em or 1.2em you can override it by adding this after the theme css:&lt;br&gt;
&lt;br&gt;&amp;lt;style type=&amp;quot;text/css&amp;quot;&amp;gt;&lt;br&gt;.ui-widget { font-size: 1em; }&lt;br&gt;&amp;lt;/style&amp;gt;&lt;br&gt;&lt;br&gt;- Richard&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Dec 18, 2009 at 3:57 PM, Heidebrink &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851892&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;heidebrink@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;Hello,&lt;br&gt;
&lt;br&gt;
I&amp;#39;m trying to use the CSS classes from JQuery UI to style my page but&lt;br&gt;
it seems like the out of the box fonts and sizes are very large.&lt;br&gt;
&lt;br&gt;
As example, I apply the ui-widget class to a fieldset and then all of&lt;br&gt;
the widgets (input, select, etc) are then changed based upon the ui-&lt;br&gt;
widget class.  They add a nice look to the contained controls, but&lt;br&gt;
everything is huge.&lt;br&gt;
&lt;br&gt;
Even if I don&amp;#39;t use the ui-widget class and just try to use the&lt;br&gt;
datepicker.  The datapicker seems to be extremely huge.  I realize I&lt;br&gt;
can change these sizes myself, but I was thinking maybe I was missing&lt;br&gt;
something as the default sizes are way big and maybe there is&lt;br&gt;
something else I need to do.&lt;br&gt;
&lt;br&gt;
Looking at the JQuery demo page that I downloaded, the font/controls&lt;br&gt;
seem normal size in there but there is this in the body style:&lt;br&gt;
&lt;br&gt;
font: 62.5%&lt;br&gt;
&lt;br&gt;
which might be reducing everything.&lt;br&gt;
&lt;br&gt;
Any help would be great.  Thanks.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
&lt;br&gt;
You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.&lt;br&gt;
To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851892&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.&lt;br&gt;
To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851892&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui%2Bunsubscribe@...&lt;/a&gt;.&lt;br&gt;
For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;--&lt;/p&gt;

You received this message because you are subscribed to the Google Groups &quot;jQuery UI&quot; group.&lt;br /&gt;

To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851892&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.&lt;br /&gt;

To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851892&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.&lt;br /&gt;

For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.&lt;br /&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Usage-of-CSS-Classe-ui-widget-tp26849772s27240p26851892.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851865</id>
	<title>Re: Re: Resizable only in one direction?</title>
	<published>2009-12-18T17:20:35Z</published>
	<updated>2009-12-18T17:20:35Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">The only icon we build in to show is se, so it&amp;#39;s hidden if the se handle is off. You can see how that&amp;#39;s done and do the same yourself manually for other handles.&lt;br&gt;&lt;br&gt;- Richard&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Fri, Dec 18, 2009 at 6:35 PM, MorningZ &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morningz@...&lt;/a&gt;&amp;gt;&lt;/span&gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;margin: 0pt 0pt 0pt 0.8ex; border-left: 1px solid rgb(204, 204, 204); padding-left: 1ex;&quot;&gt;I had run across that and tried it... something threw me off&lt;br&gt;
though....  i didn&amp;#39;t see the indicator (corner tab looking graphic),&lt;br&gt;
so i assumed it didn&amp;#39;t work&lt;br&gt;
&lt;br&gt;
but just trying again, i added&lt;br&gt;
&lt;br&gt;
handles: &amp;quot;n, s&amp;quot;&lt;br&gt;
&lt;br&gt;
and it works as desires, *except&amp;quot; i loose my visual icon to tell the&lt;br&gt;
user they can resize, i&amp;#39;d be fine with the same indicator shown&lt;br&gt;
without any special &amp;quot;handles&amp;quot;.....   am i missing a step for that?&lt;br&gt;
&lt;div class=&quot;im&quot;&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
On Dec 18, 12:36 pm, &amp;quot;Richard D. Worth&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&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; Check out the handles option:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://docs.jquery.com/UI/Resizable#option-handles&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/UI/Resizable#option-handles&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; - Richard&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 Fri, Dec 18, 2009 at 12:28 PM, MorningZ &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morni...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; &amp;gt; I must be going nuts as I have scoured the Demo and Documentation for&lt;br&gt;
&amp;gt; &amp;gt; the Resizable functionality and cannot for the life of me figure out&lt;br&gt;
&amp;gt; &amp;gt; how to make it so that the item is only resizable in one direction&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; I&amp;#39;m currently using this code since I couldn&amp;#39;t find the &amp;quot;right&amp;quot; way to&lt;br&gt;
&amp;gt; &amp;gt; do it&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;div id=&amp;quot;#div1&amp;quot; class=&amp;quot;resizable&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;      &amp;lt;textarea&amp;gt;&amp;lt;/textarea&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;/div&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;div id=&amp;quot;#div2&amp;quot; class=&amp;quot;resizable&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;      &amp;lt;object&amp;gt;&amp;lt;/object&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; &amp;lt;/div&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; $(&amp;quot;.resizable&amp;quot;).each(function() {&lt;br&gt;
&amp;gt; &amp;gt;     var id = $(this).attr(&amp;quot;id&amp;quot;);&lt;br&gt;
&amp;gt; &amp;gt;     $(this).resizable({&lt;br&gt;
&amp;gt; &amp;gt;         alsoResize: &amp;quot;#&amp;quot; + id + &amp;quot; textarea, #&amp;quot; + id + &amp;quot; object&amp;quot;,&lt;br&gt;
&amp;gt; &amp;gt;         stop: function(e, ui) {&lt;br&gt;
&amp;gt; &amp;gt;            $(this).width(&amp;quot;100%&amp;quot;);&lt;br&gt;
&amp;gt; &amp;gt;            var x = $(this).width();&lt;br&gt;
&amp;gt; &amp;gt;            $(this).find(&amp;quot;textarea, object&amp;quot;).width(&amp;quot;&amp;quot; + (x - 26) +&lt;br&gt;
&amp;gt; &amp;gt; &amp;quot;px&amp;quot;);&lt;br&gt;
&amp;gt; &amp;gt;         }&lt;br&gt;
&amp;gt; &amp;gt;     });&lt;br&gt;
&amp;gt; &amp;gt; })&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; the -26px thing is to give the enclosing/resizable &amp;lt;div&amp;gt; room for the&lt;br&gt;
&amp;gt; &amp;gt; handle icon&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; Hopefully someone can enlighten me&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; --&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups&lt;br&gt;
&amp;gt; &amp;gt; &amp;quot;jQuery UI&amp;quot; group.&lt;br&gt;
&amp;gt; &amp;gt; To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.&lt;br&gt;
&amp;gt; &amp;gt; To unsubscribe from this group, send email to&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui%2Bunsubscribe@...&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui%252Bunsubscribe@...&lt;/a&gt;&amp;gt;&lt;br&gt;

&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;h5&quot;&gt;&amp;gt; &amp;gt; .&lt;br&gt;
&amp;gt; &amp;gt; For more options, visit this group at&lt;br&gt;
&amp;gt; &amp;gt;&lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
&lt;br&gt;
You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.&lt;br&gt;
To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.&lt;br&gt;
To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui%2Bunsubscribe@...&lt;/a&gt;.&lt;br&gt;
For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;

&lt;p&gt;&lt;/p&gt;

&lt;p&gt;--&lt;/p&gt;

You received this message because you are subscribed to the Google Groups &quot;jQuery UI&quot; group.&lt;br /&gt;

To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.&lt;br /&gt;

To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851865&amp;i=9&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.&lt;br /&gt;

For more options, visit this group at http://groups.google.com/group/jquery-ui?hl=en.&lt;br /&gt;

&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Resizable-only-in-one-direction--tp26846814s27240p26851865.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851799</id>
	<title>Re: validate - error messages keep piling up</title>
	<published>2009-12-18T17:09:21Z</published>
	<updated>2009-12-18T17:09:21Z</updated>
	<author>
		<name>Mark Livingstone-6</name>
	</author>
	<content type="html">Works now :) Had to create a special class that combined all three
&lt;br&gt;classes.
&lt;br&gt;&lt;br&gt;On Dec 17, 5:36 pm, Mark Livingstone &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851799&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;namematters...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; OK, thanks. I will try and report back.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Dec 16, 12:22 pm, Jörn Zaefferer &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851799&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joern.zaeffe...@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; You have three classes specified for the errorClass. The plugin can't handle
&lt;br&gt;&amp;gt; &amp;gt; that. If you actually need more then one class, use the highlight and
&lt;br&gt;&amp;gt; &amp;gt; unhighlight options to add and remove those.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Jörn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Wed, Dec 16, 2009 at 4:43 PM, Mark Livingstone &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851799&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;namematters...@...&lt;/a&gt;&amp;gt;wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; On Dec 16, 9:59 am, Jörn Zaefferer &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851799&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joern.zaeffe...@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; At least post your full JS codes instead of just excerpts.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; Jörn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;&lt;a href=&quot;http://jsbin.com/isuco/edit&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jsbin.com/isuco/edit&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I can e-mail you the link to my working page if that will help.
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Unfortunately I cannot share it here.
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/validate---error-messages-keep-piling-up-tp26798647s27240p26851799.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851418</id>
	<title>Re: Re: jquery.color.js no longer maintained?</title>
	<published>2009-12-18T16:03:35Z</published>
	<updated>2009-12-18T16:03:35Z</updated>
	<author>
		<name>John Arrowwood-3</name>
	</author>
	<content type="html">Yep, that&amp;#39;s the one!&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Dec 17, 2009 at 8:43 PM, Dave Methvin &lt;span dir=&quot;ltr&quot;&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851418&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dave.methvin@...&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;

To be sure, you&amp;#39;re talking about this plugin?&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://plugins.jquery.com/project/color&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://plugins.jquery.com/project/color&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The plugins site is due to get a redesign for the jQuery 1.4 in&lt;br&gt;
January and I think that will help some of the plugins that have been&lt;br&gt;
neglected. Maybe we can get some people to adopt the plugins that seem&lt;br&gt;
to be popular but orphaned.&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;John Arrowwood&lt;br&gt;John (at) Irie (dash) Inc (dot) com&lt;br&gt;John (at) Arrowwood Photography (dot) com&lt;br&gt;John (at) Hanlons Razor (dot) com&lt;br&gt;--&lt;br&gt;&lt;a href=&quot;http://arrowwood.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://arrowwood.blogspot.com&lt;/a&gt;&lt;br&gt;

&lt;a href=&quot;http://www.brainyquote.com/quotes/authors/j/joan_crawford.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Joan Crawford&lt;/a&gt;  - &amp;quot;I, Joan Crawford, I believe in the dollar. Everything I earn, I spend.&amp;quot;
&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jquery.color.js-no-longer-maintained--tp26836027s27240p26851418.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851234</id>
	<title>Re: How to edit a portion of text</title>
	<published>2009-12-18T15:39:39Z</published>
	<updated>2009-12-18T15:39:39Z</updated>
	<author>
		<name>caruso_g</name>
	</author>
	<content type="html">&amp;gt; The code isn't really semantic, which makes it difficult to get to the
&lt;br&gt;&amp;gt; excerpt text. If you can't differentiate the excerpt from the content
&lt;br&gt;&amp;gt; following by extra spans then there isn't a good way to catch your
&lt;br&gt;&amp;gt; excerpt.
&lt;br&gt;&lt;br&gt;I know, but sadly I have no control on it, it's just like WordPress
&lt;br&gt;put out the code. :/
&lt;br&gt;&lt;br&gt;Anyway, I found a good solution (for good, I mean &amp;quot;better then no
&lt;br&gt;solution&amp;quot;, of course)
&lt;br&gt;&lt;br&gt;&amp;nbsp; $('.hentry &amp;gt; p:first').addClass('excerpt').find('span').replaceWith
&lt;br&gt;('hook');
&lt;br&gt;&amp;nbsp; var portions = $('.hentry &amp;gt; p:first').html();
&lt;br&gt;&amp;nbsp; var excerpt = portions.split('hook')[0];
&lt;br&gt;&amp;nbsp; var notexcerpt = portions.split('hook')[1];
&lt;br&gt;&amp;nbsp; $('.hentry &amp;gt; p:first').html(&amp;quot;&amp;lt;strong&amp;gt;&amp;quot;+excerpt+&amp;quot;&amp;lt;/strong&amp;gt;
&lt;br&gt;&amp;quot;+notexcerpt);
&lt;br&gt;&lt;br&gt;Then I styled the excerpt by css with a &amp;quot;.excerpt strong&amp;quot; selector.
&lt;br&gt;&lt;br&gt;I am absolutely sure that jQuery/Javascript ninjas out there will
&lt;br&gt;surely able to refactor it.
&lt;br&gt;So, if someone would like to improve it, it would be really
&lt;br&gt;appreciate.
&lt;br&gt;I know it is a rough and crappy code, but, as said, better then
&lt;br&gt;nothing.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/How-to-edit-a-portion-of-text-tp26796663s27240p26851234.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851191</id>
	<title>Re: Resizable only in one direction?</title>
	<published>2009-12-18T15:35:22Z</published>
	<updated>2009-12-18T15:35:22Z</updated>
	<author>
		<name>MorningZ</name>
	</author>
	<content type="html">I had run across that and tried it... something threw me off
&lt;br&gt;though.... &amp;nbsp;i didn't see the indicator (corner tab looking graphic),
&lt;br&gt;so i assumed it didn't work
&lt;br&gt;&lt;br&gt;but just trying again, i added
&lt;br&gt;&lt;br&gt;handles: &amp;quot;n, s&amp;quot;
&lt;br&gt;&lt;br&gt;and it works as desires, *except&amp;quot; i loose my visual icon to tell the
&lt;br&gt;user they can resize, i'd be fine with the same indicator shown
&lt;br&gt;without any special &amp;quot;handles&amp;quot;..... &amp;nbsp; am i missing a step for that?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Dec 18, 12:36 pm, &amp;quot;Richard D. Worth&amp;quot; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rdwo...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Check out the handles option:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://docs.jquery.com/UI/Resizable#option-handles&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/UI/Resizable#option-handles&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Richard
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Fri, Dec 18, 2009 at 12:28 PM, MorningZ &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;morni...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; I must be going nuts as I have scoured the Demo and Documentation for
&lt;br&gt;&amp;gt; &amp;gt; the Resizable functionality and cannot for the life of me figure out
&lt;br&gt;&amp;gt; &amp;gt; how to make it so that the item is only resizable in one direction
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I'm currently using this code since I couldn't find the &amp;quot;right&amp;quot; way to
&lt;br&gt;&amp;gt; &amp;gt; do it
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;div id=&amp;quot;#div1&amp;quot; class=&amp;quot;resizable&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;      &amp;lt;textarea&amp;gt;&amp;lt;/textarea&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;div id=&amp;quot;#div2&amp;quot; class=&amp;quot;resizable&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;      &amp;lt;object&amp;gt;&amp;lt;/object&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; $(&amp;quot;.resizable&amp;quot;).each(function() {
&lt;br&gt;&amp;gt; &amp;gt;     var id = $(this).attr(&amp;quot;id&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt;     $(this).resizable({
&lt;br&gt;&amp;gt; &amp;gt;         alsoResize: &amp;quot;#&amp;quot; + id + &amp;quot; textarea, #&amp;quot; + id + &amp;quot; object&amp;quot;,
&lt;br&gt;&amp;gt; &amp;gt;         stop: function(e, ui) {
&lt;br&gt;&amp;gt; &amp;gt;            $(this).width(&amp;quot;100%&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt;            var x = $(this).width();
&lt;br&gt;&amp;gt; &amp;gt;            $(this).find(&amp;quot;textarea, object&amp;quot;).width(&amp;quot;&amp;quot; + (x - 26) +
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;px&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt;         }
&lt;br&gt;&amp;gt; &amp;gt;     });
&lt;br&gt;&amp;gt; &amp;gt; })
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; the -26px thing is to give the enclosing/resizable &amp;lt;div&amp;gt; room for the
&lt;br&gt;&amp;gt; &amp;gt; handle icon
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hopefully someone can enlighten me
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;&amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui%2Bunsubscribe@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; .
&lt;br&gt;&amp;gt; &amp;gt; For more options, visit this group at
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851191&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Resizable-only-in-one-direction--tp26846814s27240p26851191.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26851007</id>
	<title>Re: Sliding menu elements from under the header</title>
	<published>2009-12-18T15:12:24Z</published>
	<updated>2009-12-18T15:12:24Z</updated>
	<author>
		<name>BineG</name>
	</author>
	<content type="html">Noone knows anything?
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 11 dec., 18:16, Bine Gorjanc &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26851007&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gorj...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; So i want to make a menu which has links that (atleast seemingly)
&lt;br&gt;&amp;gt; slide from under the header when hovering on their footer and retreat
&lt;br&gt;&amp;gt; back up on mouseout. At first i though it was easy..
&lt;br&gt;&amp;gt; i defined menu element like this (approximately):
&lt;br&gt;&amp;gt; &amp;lt;div class=&amp;quot;element&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;   &amp;lt;div class=&amp;quot;el_content&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;     Go home
&lt;br&gt;&amp;gt;   &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;   &amp;lt;div class=&amp;quot;el_footer&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt;   &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; with Jquery:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $(document).ready(function(){
&lt;br&gt;&amp;gt;         $(&amp;quot;.element:not(.active) &amp;gt; .el_content&amp;quot;).hide();
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;         $(&amp;quot;.element:not(.active)&amp;quot;).mouseenter(function()
&lt;br&gt;&amp;gt;                         {
&lt;br&gt;&amp;gt;                                 $(this).children(&amp;quot;.el_content&amp;quot;).slideDown('fast');
&lt;br&gt;&amp;gt;                         });
&lt;br&gt;&amp;gt;         $(&amp;quot;.sitelink:not(.active)&amp;quot;).mouseleave(function()
&lt;br&gt;&amp;gt;                         {
&lt;br&gt;&amp;gt;                                 $(this).children(&amp;quot;.el_content&amp;quot;).slideUp();
&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; The theory was that when the elements hide only their footer would be
&lt;br&gt;&amp;gt; visible and would therefore be &amp;quot;hanging&amp;quot; from under the header since
&lt;br&gt;&amp;gt; &amp;quot;el_content&amp;quot; div's height would be 0.
&lt;br&gt;&amp;gt; However there is still space visible where &amp;quot;el_content&amp;quot; div would be
&lt;br&gt;&amp;gt; visible. I also tried setting height explicitly to 0 but no effect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you for any ideas
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Sliding-menu-elements-from-under-the-header-tp26748155s27240p26851007.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26850033</id>
	<title>Re: onclick and jquery in the Outlook browser</title>
	<published>2009-12-18T13:35:02Z</published>
	<updated>2009-12-18T13:35:02Z</updated>
	<author>
		<name>Scott Sauyet-2</name>
	</author>
	<content type="html">On Dec 18, 3:47 am, gorfbox &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26850033&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gorf...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm having a dickens of a time with something that should be easy.
&lt;br&gt;&amp;gt; When using $(&amp;quot;body&amp;quot;).append to place an anchor containing an &amp;quot;onClick&amp;quot;
&lt;br&gt;&amp;gt; statement in the html body, the code is executed and the anchor is
&lt;br&gt;&amp;gt; shown, but the onclick doesn't work. Strangely enough, if an anchor
&lt;br&gt;&amp;gt; with an onClick is statically placed in the html code it works fine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This only happens when using the browser shown in Outlook; Chrome and
&lt;br&gt;&amp;gt; IE8 have no problems. Here's the code I'm using...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pastie.org/748407&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastie.org/748407&lt;/a&gt;&lt;/div&gt;&lt;br&gt;There's a long thread on the dev group [1] about the use of .attr().
&lt;br&gt;&lt;br&gt;I would suggest that you simply not try to use it to set event
&lt;br&gt;listeners. &amp;nbsp;Instead, use .bind('click', fn) or the shortcut .click
&lt;br&gt;(fn).
&lt;br&gt;&lt;br&gt;So instead of this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $(&amp;quot;body&amp;quot;).append($('&amp;lt;a&amp;gt;').attr({onClick:&amp;quot;alert('dynamic
&lt;br&gt;test');return false&amp;quot;}).text(&amp;quot;Dynamic&amp;quot;)) ;
&lt;br&gt;&lt;br&gt;try something like this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $(&amp;quot;body&amp;quot;).append($('&amp;lt;a&amp;gt;').click(function(){alert('dynamic
&lt;br&gt;test');return false;}).text(&amp;quot;Dynamic&amp;quot;));
&lt;br&gt;&lt;br&gt;See this for an example:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://jsbin.com/eqiva&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jsbin.com/eqiva&lt;/a&gt;&amp;nbsp;(code &lt;a href=&quot;http://jsbin.com/eqiva/edit&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jsbin.com/eqiva/edit&lt;/a&gt;)
&lt;br&gt;&lt;br&gt;I don't know if this will fix your Outlook issue, but I think it sets
&lt;br&gt;you off in a better direction.
&lt;br&gt;&lt;br&gt;Good luck,
&lt;br&gt;&lt;br&gt;&amp;nbsp; -- Scott
&lt;br&gt;&lt;br&gt;[1] &lt;a href=&quot;http://tinyurl.com/ydu7hsz&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tinyurl.com/ydu7hsz&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/onclick-and-jquery-in-the-Outlook-browser-tp26849263s27240p26850033.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26852328</id>
	<title>Re: onclick and jquery in the Outlook browser</title>
	<published>2009-12-18T13:32:27Z</published>
	<updated>2009-12-18T13:32:27Z</updated>
	<author>
		<name>lelando</name>
	</author>
	<content type="html">Why not just use the .click() method of jQuery instead? &amp;nbsp;Like this:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &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; $(&amp;quot;body&amp;quot;).append($('&amp;lt;a&amp;gt;').click({alert('test');return false}).text
&lt;br&gt;(&amp;quot;Dynamic&amp;quot;)) ;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Dec 18, 12:47 am, gorfbox &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26852328&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gorf...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi folks,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm having a dickens of a time with something that should be easy.
&lt;br&gt;&amp;gt; When using $(&amp;quot;body&amp;quot;).append to place an anchor containing an &amp;quot;onClick&amp;quot;
&lt;br&gt;&amp;gt; statement in the html body, the code is executed and the anchor is
&lt;br&gt;&amp;gt; shown, but the onclick doesn't work. Strangely enough, if an anchor
&lt;br&gt;&amp;gt; with an onClick is statically placed in the html code it works fine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; This only happens when using the browser shown in Outlook; Chrome and
&lt;br&gt;&amp;gt; IE8 have no problems. Here's the code I'm using...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://pastie.org/748407&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://pastie.org/748407&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any help would be greatly appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Gorfbox
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/onclick-and-jquery-in-the-Outlook-browser-tp26849263s27240p26852328.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849998</id>
	<title>Make sub menu delay before disapper</title>
	<published>2009-12-18T13:31:04Z</published>
	<updated>2009-12-18T13:31:04Z</updated>
	<author>
		<name>Marco Barbosa</name>
	</author>
	<content type="html">Hi all!
&lt;br&gt;&lt;br&gt;So I have this simple sub menu with Jquery.
&lt;br&gt;&lt;br&gt;The problem is that the child menu is like 2px below the parent, so
&lt;br&gt;when the submenu appears I have to be very fast to mouseover it or
&lt;br&gt;else it will disapper.
&lt;br&gt;&lt;br&gt;The sub menu is absolute positioned and I can't change that right now.
&lt;br&gt;&lt;br&gt;So how can I make the sub menu, once activated, stay like 1 second
&lt;br&gt;before disappearing?
&lt;br&gt;&lt;br&gt;Here's the code:
&lt;br&gt;(#community is the id of the &amp;lt;li&amp;gt; with a second level &amp;lt;ul&amp;gt;)
&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;nbsp; $(&amp;quot;#community&amp;quot;).mouseover( 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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).children(&amp;quot;ul&amp;quot;).css(&amp;quot;display&amp;quot;,&amp;quot;block&amp;quot;).animate({opacity:
&lt;br&gt;1.0}, 3000);
&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; }).mouseout( 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; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).children(&amp;quot;ul&amp;quot;).animate({opacity: 1.0}, 3000).css
&lt;br&gt;(&amp;quot;display&amp;quot;,&amp;quot;none&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; });
&lt;br&gt;&lt;br&gt;Note that I tried to use the animate for this but with no success.
&lt;br&gt;&lt;br&gt;Any ideas? Please any help is appreciated.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Make-sub-menu-delay-before-disapper-tp26849998s27240p26849998.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849772</id>
	<title>Usage of CSS Classe ui-widget</title>
	<published>2009-12-18T12:57:24Z</published>
	<updated>2009-12-18T12:57:24Z</updated>
	<author>
		<name>Heidebrink</name>
	</author>
	<content type="html">Hello,
&lt;br&gt;&lt;br&gt;I'm trying to use the CSS classes from JQuery UI to style my page but
&lt;br&gt;it seems like the out of the box fonts and sizes are very large.
&lt;br&gt;&lt;br&gt;As example, I apply the ui-widget class to a fieldset and then all of
&lt;br&gt;the widgets (input, select, etc) are then changed based upon the ui-
&lt;br&gt;widget class. &amp;nbsp;They add a nice look to the contained controls, but
&lt;br&gt;everything is huge.
&lt;br&gt;&lt;br&gt;Even if I don't use the ui-widget class and just try to use the
&lt;br&gt;datepicker. &amp;nbsp;The datapicker seems to be extremely huge. &amp;nbsp;I realize I
&lt;br&gt;can change these sizes myself, but I was thinking maybe I was missing
&lt;br&gt;something as the default sizes are way big and maybe there is
&lt;br&gt;something else I need to do.
&lt;br&gt;&lt;br&gt;Looking at the JQuery demo page that I downloaded, the font/controls
&lt;br&gt;seem normal size in there but there is this in the body style:
&lt;br&gt;&lt;br&gt;font: 62.5%
&lt;br&gt;&lt;br&gt;which might be reducing everything.
&lt;br&gt;&lt;br&gt;Any help would be great. &amp;nbsp;Thanks.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849772&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849772&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Usage-of-CSS-Classe-ui-widget-tp26849772s27240p26849772.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849584</id>
	<title>Re: Tab Switcher problem</title>
	<published>2009-12-18T12:51:40Z</published>
	<updated>2009-12-18T12:51:40Z</updated>
	<author>
		<name>MorningZ</name>
	</author>
	<content type="html">both
&lt;br&gt;&lt;br&gt;ui.base.css
&lt;br&gt;and
&lt;br&gt;ui.theme.css
&lt;br&gt;&lt;br&gt;throw 404 not found...
&lt;br&gt;&lt;br&gt;using a tool like Firebug (&lt;a href=&quot;http://www.getfirebug.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.getfirebug.com&lt;/a&gt;) makes this a 2
&lt;br&gt;second job to discover &amp;nbsp; :-)
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Dec 18, 9:32 am, William &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849584&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;utopicstud...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi everyone, I am trying to get the demo no jquery, where the Tabs
&lt;br&gt;&amp;gt; automatically switch without changing URL's.
&lt;br&gt;&amp;gt; Here is the link to the demo I am trying to recreate.&lt;a href=&quot;http://jqueryui.com/demos/tabs/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jqueryui.com/demos/tabs/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Here is the url to the page where I am trying to recreate the demo onhttp://www.mdplusclinic.com/test2.php
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I included all of dependent jquery library, source code, and CSS files
&lt;br&gt;&amp;gt; for the demo, and I still cant get it to work! arrrg!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I can find what I am doing wrong arrrg!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks Will-
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Tab-Switcher-problem-tp26849266s27240p26849584.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849351</id>
	<title>Re: Need help with image slideshow effect</title>
	<published>2009-12-18T12:33:09Z</published>
	<updated>2009-12-18T12:33:09Z</updated>
	<author>
		<name>dec0y</name>
	</author>
	<content type="html">Sorry for the double post, just forgot to add the code.
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-help-with-image-slideshow-effect-tp26849314s27240p26849351.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849314</id>
	<title>Need help with image slideshow effect</title>
	<published>2009-12-18T12:31:15Z</published>
	<updated>2009-12-18T12:31:15Z</updated>
	<author>
		<name>dec0y</name>
	</author>
	<content type="html">I'm trying to do a simple image slideshow similar to what you see
&lt;br&gt;here: &lt;a href=&quot;http://www.okadirect.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.okadirect.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;When the image changes, I want there to be that sort of &amp;quot;flash&amp;quot; effect
&lt;br&gt;that fades out to reveal the image.
&lt;br&gt;&lt;br&gt;Looking around on the jquery website, I found this
&lt;br&gt;&lt;a href=&quot;http://docs.jquery.com/UI/Effects/Highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/UI/Effects/Highlight&lt;/a&gt;, which seems to be the
&lt;br&gt;effect I'm looking for, but I can't figure out how to implement it to
&lt;br&gt;my existing slideshow script (which I got from here:
&lt;br&gt;&lt;a href=&quot;http://jonraasch.com/blog/a-simple-jquery-slideshow&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jonraasch.com/blog/a-simple-jquery-slideshow&lt;/a&gt;&lt;br&gt;&lt;br&gt;The slideshow script from that website uses a fade in transitioning
&lt;br&gt;effect between the images, which is nice and all, but I've really been
&lt;br&gt;spending hours trying to figure out how to implement that highlight/
&lt;br&gt;flash effect into it.
&lt;br&gt;&lt;br&gt;So, as you can clearly see, I have no javascript experience and any
&lt;br&gt;help would be really really appreciated. It seems like such a simple
&lt;br&gt;thing to do but I can't figure it out.
&lt;br&gt;&lt;br&gt;My current script:
&lt;br&gt;&lt;br&gt;JS
&lt;br&gt;&lt;br&gt;function slideSwitch() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; var $active = $('#slideshow IMG.active');
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; if ( $active.length == 0 ) $active = $('#slideshow IMG:last');
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // use this to pull the images in the order they appear in the
&lt;br&gt;markup
&lt;br&gt;&amp;nbsp; &amp;nbsp; var $next = &amp;nbsp;$active.next().length ? $active.next()
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; : $('#slideshow IMG:first');
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // uncomment the 3 lines below to pull the images in random order
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; // var $sibs &amp;nbsp;= $active.siblings();
&lt;br&gt;&amp;nbsp; &amp;nbsp; // var rndNum = Math.floor(Math.random() * $sibs.length );
&lt;br&gt;&amp;nbsp; &amp;nbsp; // var $next &amp;nbsp;= $( $sibs[ rndNum ] );
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $active.addClass('last-active');
&lt;br&gt;&amp;nbsp; &amp;nbsp; $next.css({opacity: 0.0})
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .addClass('active')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .animate({opacity: 1.0}, 1000, function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $active.removeClass('active last-active');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;$(function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; setInterval( &amp;quot;slideSwitch()&amp;quot;, 3000 );
&lt;br&gt;});
&lt;br&gt;&lt;br&gt;&lt;br&gt;CSS
&lt;br&gt;&lt;br&gt;#slideshow {
&lt;br&gt;&amp;nbsp; &amp;nbsp; position:relative;
&lt;br&gt;&amp;nbsp; &amp;nbsp; height:350px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; margin-left: 260px;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;#slideshow IMG {
&lt;br&gt;&amp;nbsp; &amp;nbsp; position:absolute;
&lt;br&gt;&amp;nbsp; &amp;nbsp; border: 5px solid #B99E75;
&lt;br&gt;&amp;nbsp; &amp;nbsp; height: 400px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; width: 500px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; top:0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; left:0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; z-index:8;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;#slideshow IMG.active {
&lt;br&gt;&amp;nbsp; &amp;nbsp; z-index:10;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;#slideshow IMG.last-active {
&lt;br&gt;&amp;nbsp; &amp;nbsp; z-index:9;
&lt;br&gt;}
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-help-with-image-slideshow-effect-tp26849314s27240p26849314.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849295</id>
	<title>Re: Re: attr() is still very broken in 1.4a1</title>
	<published>2009-12-18T12:30:07Z</published>
	<updated>2009-12-18T12:30:07Z</updated>
	<author>
		<name>John Resig</name>
	</author>
	<content type="html">&amp;gt; What about (i)frames?
&lt;br&gt;&lt;br&gt;In that case just use the jQuery inside the (i)frame. I'm fine punting
&lt;br&gt;on that as well. Optimized for the very-most-common case.
&lt;br&gt;&lt;br&gt;--John
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849295&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849295&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/attr%28%29-is-still-very-broken-in-1.4a1-tp26745175s27240p26849295.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849158</id>
	<title>Re: Re: About the group</title>
	<published>2009-12-18T12:20:27Z</published>
	<updated>2009-12-18T12:20:27Z</updated>
	<author>
		<name>John Resig</name>
	</author>
	<content type="html">Not yet - will have something up for testing very soon.
&lt;br&gt;&lt;br&gt;--John
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On Fri, Dec 18, 2009 at 3:15 PM, Steven Black &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;steveb@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Any way to test-drive this before it goes live?  Mostly just curious.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; **--**  Steve
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Dec 18, 12:05 am, John Resig &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jere...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; We've already exported all the data and we're in the process of
&lt;br&gt;&amp;gt;&amp;gt; putting together the final details of our new solution (we're
&lt;br&gt;&amp;gt;&amp;gt; switching to Zoho Discussion). We're planning on making the switch
&lt;br&gt;&amp;gt;&amp;gt; over the holiday break and will make the final push on Jan. 4th. We'll
&lt;br&gt;&amp;gt;&amp;gt; have plenty more details when we get closer to the final switch.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; --John
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; On Thu, Dec 17, 2009 at 8:33 PM, Julian Aubourg
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aubourg.jul...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; I was browsing John's blog (because I sometimes like a good read) and I came
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; upon this post I hadn't seen before:
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://ejohn.org/blog/google-groups-is-dead/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ejohn.org/blog/google-groups-is-dead/&lt;/a&gt;&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; First of all, thanks to all those that moderate this list and the others (I
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; wasn't aware of the nightmare behind). I was curious, though, as to the
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; state of the migration. Where, what, when? Just being curious after a
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; looooooong day of work.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt; For more options, visit this group at
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;&amp;gt; To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;&amp;gt; To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;&amp;gt; For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=7&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849158&amp;i=8&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/About-the-group-tp26837886s27240p26849158.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849268</id>
	<title>Need help with image slideshow effect</title>
	<published>2009-12-18T12:16:14Z</published>
	<updated>2009-12-18T12:16:14Z</updated>
	<author>
		<name>dec0y</name>
	</author>
	<content type="html">I'm trying to do a simple image slideshow similar to what you see
&lt;br&gt;here: &lt;a href=&quot;http://www.okadirect.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.okadirect.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;When the image changes, I want there to be that sort of &amp;quot;flash&amp;quot; effect
&lt;br&gt;that fades out to reveal the image.
&lt;br&gt;&lt;br&gt;Looking around on the jquery website, I found this
&lt;br&gt;&lt;a href=&quot;http://docs.jquery.com/UI/Effects/Highlight&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/UI/Effects/Highlight&lt;/a&gt;, which seems to be the
&lt;br&gt;effect I'm looking for, but I can't figure out how to implement it to
&lt;br&gt;my existing slideshow script (which I got from here:
&lt;br&gt;&lt;a href=&quot;http://jonraasch.com/blog/a-simple-jquery-slideshow&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jonraasch.com/blog/a-simple-jquery-slideshow&lt;/a&gt;&lt;br&gt;&lt;br&gt;The slideshow script from that website uses a fade in transitioning
&lt;br&gt;effect between the images, which is nice and all, but I've really been
&lt;br&gt;spending hours trying to figure out how to implement that highlight/
&lt;br&gt;flash effect into it.
&lt;br&gt;&lt;br&gt;So, as you can clearly see, I have no javascript experience and any
&lt;br&gt;help would be really really appreciated. It seems like such a simple
&lt;br&gt;thing to do but I can't figure it out
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Need-help-with-image-slideshow-effect-tp26849268s27240p26849268.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849104</id>
	<title>Re: About the group</title>
	<published>2009-12-18T12:15:59Z</published>
	<updated>2009-12-18T12:15:59Z</updated>
	<author>
		<name>Steven Black-2</name>
	</author>
	<content type="html">Any way to test-drive this before it goes live? &amp;nbsp;Mostly just curious.
&lt;br&gt;&lt;br&gt;**--** &amp;nbsp;Steve
&lt;br&gt;&lt;br&gt;On Dec 18, 12:05 am, John Resig &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jere...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; We've already exported all the data and we're in the process of
&lt;br&gt;&amp;gt; putting together the final details of our new solution (we're
&lt;br&gt;&amp;gt; switching to Zoho Discussion). We're planning on making the switch
&lt;br&gt;&amp;gt; over the holiday break and will make the final push on Jan. 4th. We'll
&lt;br&gt;&amp;gt; have plenty more details when we get closer to the final switch.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --John
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Thu, Dec 17, 2009 at 8:33 PM, Julian Aubourg
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aubourg.jul...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; I was browsing John's blog (because I sometimes like a good read) and I came
&lt;br&gt;&amp;gt; &amp;gt; upon this post I hadn't seen before:
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://ejohn.org/blog/google-groups-is-dead/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ejohn.org/blog/google-groups-is-dead/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; First of all, thanks to all those that moderate this list and the others (I
&lt;br&gt;&amp;gt; &amp;gt; wasn't aware of the nightmare behind). I was curious, though, as to the
&lt;br&gt;&amp;gt; &amp;gt; state of the migration. Where, what, when? Just being curious after a
&lt;br&gt;&amp;gt; &amp;gt; looooooong day of work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; You received this message because you are subscribed to the Google Groups
&lt;br&gt;&amp;gt; &amp;gt; &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;&amp;gt; &amp;gt; To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt; To unsubscribe from this group, send email to
&lt;br&gt;&amp;gt; &amp;gt; &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;&amp;gt; &amp;gt; For more options, visit this group at
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849104&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/About-the-group-tp26837886s27240p26849104.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849261</id>
	<title>Re: Re: attr() is still very broken in 1.4a1</title>
	<published>2009-12-18T12:03:07Z</published>
	<updated>2009-12-18T12:03:07Z</updated>
	<author>
		<name>Roman Neuhauser</name>
	</author>
	<content type="html"># &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849261&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeresig@...&lt;/a&gt; / 2009-12-18 12:52:08 -0500:
&lt;br&gt;&amp;gt; I read through the thread again last evening, and mulled it over last
&lt;br&gt;&amp;gt; night, and I now agree that there is just too much room for confusion
&lt;br&gt;&lt;br&gt;Thanks for the consideration! &amp;nbsp;IMO (and from my experience) .attr is
&lt;br&gt;needlessly magic and inconsistent (esp. Matt's point regarding readonly
&lt;br&gt;is spot on).
&lt;br&gt;&lt;br&gt;&amp;gt; More importantly though, the functionality is now exposed as a
&lt;br&gt;&amp;gt; quick-setter for newly-created DOM elements, like so (which is,
&lt;br&gt;&amp;gt; ultimately, the result I was trying to achieve with the .attr()
&lt;br&gt;&amp;gt; changes anyway):
&lt;br&gt;&amp;gt; &amp;nbsp; $(&amp;quot;&amp;lt;div&amp;gt;&amp;quot;, { height: 10, html: &amp;quot;...&amp;quot;, id: &amp;quot;test&amp;quot;, click: fn })
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; Note that the above doesn't take a context, thus it only works on the
&lt;br&gt;&amp;gt; current document (which is fine, since we wouldn't want to use the
&lt;br&gt;&amp;gt; method setters on non-HTML documents anyway),
&lt;br&gt;&lt;br&gt;What about (i)frames?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Roman Neuhauser
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849261&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849261&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/attr%28%29-is-still-very-broken-in-1.4a1-tp26745175s27240p26849261.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26848983</id>
	<title>jQuery UI dialog and Ruby on Rails searching</title>
	<published>2009-12-18T11:51:49Z</published>
	<updated>2009-12-18T11:51:49Z</updated>
	<author>
		<name>John Mcleod-3</name>
	</author>
	<content type="html">Hello all,
&lt;br&gt;I'm looking to perform a search via dialog box and return the results
&lt;br&gt;within the box. &amp;nbsp;I'm currently working in the Ruby on Rails platform.
&lt;br&gt;I can get the dialog box to open and display a search field and
&lt;br&gt;button. &amp;nbsp;My next step is to do the search and return the results to
&lt;br&gt;the open dialog box.
&lt;br&gt;&lt;br&gt;Thank you for any and all help on this.
&lt;br&gt;&lt;br&gt;JohnM
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848983&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848983&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/jQuery-UI-dialog-and-Ruby-on-Rails-searching-tp26848983s27240p26848983.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26848985</id>
	<title>Link a Tab from another Tab</title>
	<published>2009-12-18T11:40:28Z</published>
	<updated>2009-12-18T11:40:28Z</updated>
	<author>
		<name>Mohamed HADROUJ (Gmail)</name>
	</author>
	<content type="html">Hi all,
&lt;br&gt;I'm new into jQuery UI.
&lt;br&gt;I'm trying to add a link in a tab that points to another tab. Here is
&lt;br&gt;an example :
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;tabs&amp;quot;&amp;gt;
&lt;br&gt;&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;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#Home&amp;quot;&amp;gt;Home&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;li&amp;gt;&amp;lt;a href=&amp;quot;#My_preferences&amp;quot;&amp;gt;My Preferences&amp;lt;/a&amp;gt;&amp;lt;/li&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/ul&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;Home&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt; &amp;lt;a href=&amp;quot;LINK TO PREFERENCES TAB&amp;quot;&amp;gt;My Preferences&amp;lt;/a&amp;gt;&amp;lt;/
&lt;br&gt;p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;My_preferences&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;p&amp;gt;Some preferences&amp;lt;/p&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp;&amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;how can do that that with jQueryUI ?
&lt;br&gt;&lt;br&gt;Thank you very much !
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848985&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848985&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Link-a-Tab-from-another-Tab-tp26848985s27240p26848985.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26847810</id>
	<title>Traversing down</title>
	<published>2009-12-18T10:39:17Z</published>
	<updated>2009-12-18T10:39:17Z</updated>
	<author>
		<name>pedramphp</name>
	</author>
	<content type="html">I would like to have Traverse Down and It self Traversing function in
&lt;br&gt;jQUery how can I make that
&lt;br&gt;as you all know we have Closest which is traversing up and includes it
&lt;br&gt;self...
&lt;br&gt;&lt;br&gt;this is what I have
&lt;br&gt;$(event.target).find('&amp;gt; a:not(.active)');
&lt;br&gt;the problem occurs when the event.target is the actual link .
&lt;br&gt;so any one has an idea an, thanks !!!
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-General-Discussion-f15494.html&quot; embed=&quot;fixTarget[15494]&quot; target=&quot;_top&quot; &gt;jQuery General Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Traversing-down-tp26847810s27240p26847810.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26849264</id>
	<title>Why won't the code below work with IE 6</title>
	<published>2009-12-18T10:37:15Z</published>
	<updated>2009-12-18T10:37:15Z</updated>
	<author>
		<name>sshekhar78</name>
	</author>
	<content type="html">I am new to jQuery development and the code below just will not work
&lt;br&gt;in IE6.
&lt;br&gt;(a) The new checkboxes will not check
&lt;br&gt;(b) The function is able to update the 'id' values but not the 'name'
&lt;br&gt;for the new input fields being created.
&lt;br&gt;&lt;br&gt;Mozilla works fine with all this. What am I doing wrong? Any help will
&lt;br&gt;be greatly appreciated.
&lt;br&gt;&lt;br&gt;&amp;lt;html&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;jquery.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;document&amp;quot;).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; $(&amp;quot;input[id^='button-']&amp;quot;).bind(&amp;quot;click&amp;quot;, copyOnClick);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function copyOnClick(){
&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; var idSplit = this.id.split(&amp;quot;-&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; var newSequenceNumber = parseInt(idSplit[1]) + 1;
&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;nbsp; var closestTableRow = $(this).parent().parent().get(0);
&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; var newRow = $(closestTableRow).clone(true);
&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;nbsp; newRow.find(&amp;quot;input[id^='button-']&amp;quot;).attr(&amp;quot;id&amp;quot;, &amp;quot;button-&amp;quot; +
&lt;br&gt;newSequenceNumber);
&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;nbsp; newRow.find(&amp;quot;input[id^='text-']&amp;quot;).attr(&amp;quot;id&amp;quot;, &amp;quot;text-&amp;quot; +
&lt;br&gt;newSequenceNumber);
&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; newRow.find(&amp;quot;input[id^='text-']&amp;quot;).attr(&amp;quot;name&amp;quot;, &amp;quot;text-&amp;quot; +
&lt;br&gt;newSequenceNumber);
&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; newRow.find(&amp;quot;input[id^='text-']&amp;quot;).attr(&amp;quot;value&amp;quot;, &amp;quot;dummy&amp;quot;);
&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;nbsp; newRow.find(&amp;quot;input[id^='check-']&amp;quot;).attr(&amp;quot;id&amp;quot;, &amp;quot;check-&amp;quot; +
&lt;br&gt;newSequenceNumber);
&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; newRow.find(&amp;quot;input[id^='check-']&amp;quot;).attr(&amp;quot;name&amp;quot;, &amp;quot;check-&amp;quot; +
&lt;br&gt;newSequenceNumber);
&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; newRow.find(&amp;quot;input[id^='check-']&amp;quot;).attr(&amp;quot;value&amp;quot;, &amp;quot;cBox&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; newRow.find(&amp;quot;input[id^='check-']&amp;quot;).attr(&amp;quot;checked&amp;quot;, &amp;quot;checked&amp;quot;);
&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;nbsp; //Add listener to the new add button
&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; newRow.find(&amp;quot;input[id^='button-']&amp;quot;).bind(&amp;quot;click&amp;quot;, copyOnClick);
&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;nbsp; //Insert new row
&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; $(newRow).insertAfter($(closestTableRow));
&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;lt;/script&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;/head&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;body&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;form id=&amp;quot;myForm&amp;quot; name=&amp;quot;myForm&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;table&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;tr&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;nbsp; &amp;lt;td&amp;gt;&amp;lt;input id=&amp;quot;button-0&amp;quot; type=&amp;quot;button&amp;quot; value=&amp;quot;Add&amp;quot; /&amp;gt;&amp;lt;/td&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;nbsp; &amp;lt;td&amp;gt;&amp;lt;input id=&amp;quot;text-0&amp;quot; name=&amp;quot;text-0&amp;quot; type=&amp;quot;text&amp;quot; value=&amp;quot;&amp;quot; /&amp;gt;&amp;lt;/td&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;nbsp; &amp;lt;td&amp;gt;&amp;lt;input id=&amp;quot;check-0&amp;quot; name=&amp;quot;check-0&amp;quot; type=&amp;quot;checkbox&amp;quot;
&lt;br&gt;value=&amp;quot;cBox&amp;quot; /&amp;gt;&amp;lt;/td&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;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/table&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/form&amp;gt;
&lt;br&gt;&amp;nbsp; &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;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery Development&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849264&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26849264&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-dev+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-dev?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-dev?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-Dev-List-f20161.html&quot; embed=&quot;fixTarget[20161]&quot; target=&quot;_top&quot; &gt;jQuery Dev List&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Why-won%27t-the-code-below-work-with-IE-6-tp26849264s27240p26849264.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-26848982</id>
	<title>Draggable buttons and other input methods?</title>
	<published>2009-12-18T10:10:35Z</published>
	<updated>2009-12-18T10:10:35Z</updated>
	<author>
		<name>Robin-99</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;I've been working on a custom UI for an application, and to prevent me
&lt;br&gt;having to deal with every crazy user request for layout changes, made
&lt;br&gt;it customisable.
&lt;br&gt;&lt;br&gt;Works fine for divs etc, &amp;nbsp;I can layout the the various objects that
&lt;br&gt;make up the UI, click my edit button that makes anything that needs to
&lt;br&gt;be draggable, draggable and then save the positions to a database for
&lt;br&gt;the next time the user pulls up that form.
&lt;br&gt;&lt;br&gt;Except ... textareas, buttons and input fields all seem to be a
&lt;br&gt;problem ... wrapping them in a &amp;lt;div&amp;gt; block produces a div that is the
&lt;br&gt;same size as the button, so you still can't get a handle to drag it
&lt;br&gt;with ... I suppose I could pad out the div and click just off the side
&lt;br&gt;of the button to drag, but then it would be tricky to know which
&lt;br&gt;button you were about to pick up when trying to move one button in a
&lt;br&gt;block of buttons ...
&lt;br&gt;&lt;br&gt;has anyone else got dragging to work on buttons? I suspect the button
&lt;br&gt;is stealign focus ... but i don't really know.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;&lt;br&gt;You received this message because you are subscribed to the Google Groups &amp;quot;jQuery UI&amp;quot; group.
&lt;br&gt;To post to this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848982&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui@...&lt;/a&gt;.
&lt;br&gt;To unsubscribe from this group, send email to &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=26848982&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jquery-ui+unsubscribe@...&lt;/a&gt;.
&lt;br&gt;For more options, visit this group at &lt;a href=&quot;http://groups.google.com/group/jquery-ui?hl=en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-ui?hl=en&lt;/a&gt;.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://old.nabble.com/jQuery-UI-Discussion-f27241.html&quot; embed=&quot;fixTarget[27241]&quot; target=&quot;_top&quot; &gt;jQuery UI Discussion&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Draggable-buttons-and-other-input-methods--tp26848982s27240p26848982.html" />
</entry>

</feed>
