<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-27240</id>
	<title>Nabble - jQuery</title>
	<updated>2008-07-09T03:01:49Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/jQuery-f27240.xml" />
	<link rel="alternate" type="text/html" href="http://www.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:www.nabble.com,2006:post-18358146</id>
	<title>Re: Running a loop for array numbers</title>
	<published>2008-07-09T03:01:49Z</published>
	<updated>2008-07-09T03:01:49Z</updated>
	<author>
		<name>Scott Sauyet-3</name>
	</author>
	<content type="html">&lt;br&gt;JohneeM wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi guys how can i run this in a single statement without manually
&lt;br&gt;&amp;gt; putting in the numbers?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(1)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(2)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(3)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(4)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(5)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(6)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(7)').hide();
&lt;br&gt;&amp;gt; $('.equipment a.i-right1:eq(8)').hide();
&lt;/div&gt;&lt;br&gt;How about
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$('.equipment a.i-right1:gt(0):lt(10)').hide();
&lt;br&gt;&lt;br&gt;or
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;$('.equipment a.i-right1:not(:first)').hide();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp;-- Scott
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Running-a-loop-for-array-numbers-tp18346526s27240p18358146.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18358124</id>
	<title>Re: Selectable and able to drag objects</title>
	<published>2008-07-09T02:49:16Z</published>
	<updated>2008-07-09T02:49:16Z</updated>
	<author>
		<name>tomask</name>
	</author>
	<content type="html">&lt;br&gt;hi Nate could you pls post some sample whole updated script here?
&lt;br&gt;thanks very much
&lt;br&gt;&lt;br&gt;On Jun 19, 7:38 pm, &amp;quot;Nate Laws&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18358124&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;natelaws@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I rewrote the interface demo into UI compatible code for my own
&lt;br&gt;&amp;gt; projects... the draggable part looks something this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; var initPos = false;
&lt;br&gt;&amp;gt; var collection = false;
&lt;br&gt;&amp;gt; $(&amp;quot;.foo&amp;quot;).draggable(
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;     start: function(e, ui) {
&lt;br&gt;&amp;gt;         if ($(this).is('div.ui-selected')) {
&lt;br&gt;&amp;gt;                 initPos = {x: parseInt(this.style.left,10),
&lt;br&gt;&amp;gt; y:parseInt(this.style.top,10)};
&lt;br&gt;&amp;gt;                 collection = jQuery('div.ui-selected:visible').not(this);
&lt;br&gt;&amp;gt;                 if (collection.size() == 0) {
&lt;br&gt;&amp;gt;                         initPos = false;
&lt;br&gt;&amp;gt;                         collection = false;
&lt;br&gt;&amp;gt;                 }
&lt;br&gt;&amp;gt;         }
&lt;br&gt;&amp;gt;     },
&lt;br&gt;&amp;gt;     drag: function(e, ui) {
&lt;br&gt;&amp;gt;             if(collection) {
&lt;br&gt;&amp;gt;                 var x = ui.position.left;
&lt;br&gt;&amp;gt;                 var y = ui.position.top;
&lt;br&gt;&amp;gt;                 collection.each(
&lt;br&gt;&amp;gt;                     function() {
&lt;br&gt;&amp;gt;                         this.style.left = parseInt(this.style.left,10)
&lt;br&gt;&amp;gt; + x - initPos.x + 'px';
&lt;br&gt;&amp;gt;                         this.style.top = parseInt(this.style.top,10)+
&lt;br&gt;&amp;gt; y - initPos.y + 'px';
&lt;br&gt;&amp;gt;                         }
&lt;br&gt;&amp;gt;                 );
&lt;br&gt;&amp;gt;                 initPos = {x: x, y:y};
&lt;br&gt;&amp;gt;             }
&lt;br&gt;&amp;gt;     },
&lt;br&gt;&amp;gt;     stop : function(e,ui)
&lt;br&gt;&amp;gt;     {
&lt;br&gt;&amp;gt;         initPos = false;
&lt;br&gt;&amp;gt;         collection = false;
&lt;br&gt;&amp;gt;     }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt; On Thu, Jun 19, 2008 at 2:07 PM, berbercarpet &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18358124&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;berbercarpet@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; is there any movement in this area?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; i think this is a very important, and very basic, problem to solve in
&lt;br&gt;&amp;gt; &amp;gt; many user interfaces.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; it would be nice have this.
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18358124&amp;i=2&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18358124&amp;i=3&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://www.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://www.nabble.com/Selectable-and-able-to-drag-objects-tp15886107s27240p18358124.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18357338</id>
	<title>Re: Plugin development: $.fn.pluginName vs $.pluginName</title>
	<published>2008-07-09T02:08:15Z</published>
	<updated>2008-07-09T02:08:15Z</updated>
	<author>
		<name>Yereth</name>
	</author>
	<content type="html">&lt;br&gt;Can anyone verifiy this? Is this standard implementation of the JS
&lt;br&gt;engine?
&lt;br&gt;&lt;br&gt;When I create a plugin like:
&lt;br&gt;&lt;br&gt;$.fn.pluginName = function(options) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;var opts = $.extend({}, options);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.click(function(e) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(opts);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;And run it twice:
&lt;br&gt;&lt;br&gt;$('a').pluginName({var: 'value', message: 'hi!'});
&lt;br&gt;$('span').pluginName({var: 'empty', message: 'bye!'});
&lt;br&gt;&lt;br&gt;I will get different values in the console when I click a &amp;lt;span&amp;gt; or an
&lt;br&gt;&amp;lt;a&amp;gt;, so for each time I run pluginName new memory is allocated. Is it
&lt;br&gt;so then that the prototype always stays the same and occupies in fact
&lt;br&gt;only once my memory? Does any one have more information on memory
&lt;br&gt;management of JS?
&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;&lt;br&gt;On Jul 8, 3:18 pm, jdalton &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18357338&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;John.David.Dal...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Adding to an objects prototype shouldn't be a performance problem
&lt;br&gt;&amp;gt; because all instances of that object reference the prototype.
&lt;br&gt;&amp;gt; As long there isn’t iteration over items in the prototype then you
&lt;br&gt;&amp;gt; should be fine (ex: for-in loops).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - JDD
&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18357338&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18357338&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://www.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://www.nabble.com/Plugin-development%3A-%24.fn.pluginName-vs-%24.pluginName-tp18340192s27240p18357338.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18356953</id>
	<title>Re: [accordion] animation effect on open and close</title>
	<published>2008-07-09T01:40:46Z</published>
	<updated>2008-07-09T01:40:46Z</updated>
	<author>
		<name>Jörn Zaefferer-2</name>
	</author>
	<content type="html">&lt;br&gt;I've added some documentation about custom animation schemes to the
&lt;br&gt;animated-option:
&lt;br&gt;&lt;a href=&quot;http://docs.jquery.com/UI/Accordion/accordion#toptions&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/UI/Accordion/accordion#toptions&lt;/a&gt;&lt;br&gt;&lt;br&gt;Jörn
&lt;br&gt;&lt;br&gt;On Wed, Jul 9, 2008 at 10:31 AM, Jörn Zaefferer
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356953&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;joern.zaefferer@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; You can implement your own animation scheme. So far no one asked for
&lt;br&gt;&amp;gt; it, so there isn't really any documentation on the matter.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Take a look at the source for the bounceslide scheme:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://ui.jquery.com/bugs/browser/trunk/ui/ui.accordion.js#L275&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ui.jquery.com/bugs/browser/trunk/ui/ui.accordion.js#L275&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So to add your own, something like this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $.ui.accordion.animations.superbounce = function(options) {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;this.slide(options, {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;easing: options.down ? &amp;quot;bounceout&amp;quot; : &amp;quot;bouncein&amp;quot;,
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;duration: options.down ? 1000 : 500
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt; };
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The use via animated: &amp;quot;superbounce&amp;quot;.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Jörn
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Wed, Jul 9, 2008 at 1:32 AM, Shadi Almosri &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356953&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;salmosri@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Hiya,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; We are currently implementing the accordion as the main navigation for
&lt;br&gt;&amp;gt;&amp;gt; our site: &lt;a href=&quot;http://www.softerlogic.com/v3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softerlogic.com/v3/&lt;/a&gt;&amp;nbsp;i was wondering if anyone
&lt;br&gt;&amp;gt;&amp;gt; knew how we can get the bounce animation that you get when opening an
&lt;br&gt;&amp;gt;&amp;gt; accordion to occur in reverse.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; To understand
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; go to the link &lt;a href=&quot;http://www.softerlogic.com/v3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softerlogic.com/v3/&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; click on 03 Technical Services in the top left, you will see the animation as the accordion drops.
&lt;br&gt;&amp;gt;&amp;gt;&amp;gt; now at the bottom click on 01 home, and the accordion will go back up
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; When it goes up it goes back up very fast with no animation, is there
&lt;br&gt;&amp;gt;&amp;gt; anyway to imitate the easing animation for that 3rd step or at least
&lt;br&gt;&amp;gt;&amp;gt; control the speed in which it returns?
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Thanks in advance,
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Shadi Almosri
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; &amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356953&amp;i=2&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356953&amp;i=3&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://www.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://www.nabble.com/-accordion--animation-effect-on-open-and-close-tp18355336s27240p18356953.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18356873</id>
	<title>Re: .offset() improvements needed</title>
	<published>2008-07-09T01:35:45Z</published>
	<updated>2008-07-09T01:35:45Z</updated>
	<author>
		<name>Paul Bakaus</name>
	</author>
	<content type="html">&lt;br&gt;Didn't see your messages, only after posting :)
&lt;br&gt;Brandon, it would be excellent if you could contact Eduardo
&lt;br&gt;(&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eduardolundgren@...&lt;/a&gt; he's on GTalk as well),
&lt;br&gt;so you can check out what he already did / work together.
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Paul
&lt;br&gt;&lt;br&gt;On Jul 9, 4:03 am, &amp;quot;Brandon Aaron&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;brandon.aa...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Just created a new branch called &amp;quot;offset_enhancements&amp;quot; to play around with
&lt;br&gt;&amp;gt; some ideas I've got.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I just looked over the APE source ... WOW ... 20k uncompressed just for the
&lt;br&gt;&amp;gt; position file ... our offset file is 6k uncompressed. As usual I'm sure we
&lt;br&gt;&amp;gt; can find a nice balance of performance/size.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Brandon Aaron
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Tue, Jul 8, 2008 at 8:29 PM, Brandon Aaron &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;brandon.aa...@...&lt;/a&gt;&amp;gt;
&lt;br&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I think it is great to see another library take the offset method to new
&lt;br&gt;&amp;gt; &amp;gt; levels. :)  I'll try to take a more detailed look at the comparison soon and
&lt;br&gt;&amp;gt; &amp;gt; see what I can do to raise the bar again.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Brandon Aaron
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Sat, Jul 5, 2008 at 3:21 PM, John Resig &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jere...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The APE library recently released some information on library
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; compatibility of .offset() methods and speed:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&lt;a href=&quot;http://dhtmlkitchen.com/ape/example/dom/compare/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/example/dom/compare/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The test suite used:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt;&lt;a href=&quot;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To start, we need to investigate the relative positioning issues in
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Firefox 2 and Safari 3.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I know that we've looked at performance issues in the past - but are
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; there any additional thoughts?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --John
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356873&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://www.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://www.nabble.com/.offset%28%29-improvements-needed-tp18295928s27240p18356873.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18356853</id>
	<title>Re: .offset() improvements needed</title>
	<published>2008-07-09T01:34:08Z</published>
	<updated>2008-07-09T01:34:08Z</updated>
	<author>
		<name>Paul Bakaus</name>
	</author>
	<content type="html">&lt;br&gt;Indeed!
&lt;br&gt;&lt;br&gt;Eduardo is working on a optimized version right now as a task
&lt;br&gt;for Liferay. Will update you with the first results as soon as I got
&lt;br&gt;something.
&lt;br&gt;&lt;br&gt;On Jul 7, 2:57 pm, &amp;quot;John Resig&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356853&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; Interesting stuff! Definitely remember, though, that APEs license is
&lt;br&gt;&amp;gt; incompatible with ours, so you need to be sure that any code you
&lt;br&gt;&amp;gt; include in jQuery is original.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --John
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Mon, Jul 7, 2008 at 3:12 AM, Paul Bakaus &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356853&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;paul.bak...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Guys,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; after first testing rounds, I have some results to share:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; - We don't pass APE's test suite (mostly fails add body positioning,
&lt;br&gt;&amp;gt; &amp;gt; relative positions at this point I think)
&lt;br&gt;&amp;gt; &amp;gt; - APE completely passes our test suite
&lt;br&gt;&amp;gt; &amp;gt; - Using APE's offset method, UI sortables' time to call offset
&lt;br&gt;&amp;gt; &amp;gt; decreases by about 900% - this is a true 900% performance increase (in
&lt;br&gt;&amp;gt; &amp;gt; FF3!).
&lt;br&gt;&amp;gt; &amp;gt; - During page initialization, APE is building up a lot of useful
&lt;br&gt;&amp;gt; &amp;gt; constants - however, some of them are a bit tricky - they involve
&lt;br&gt;&amp;gt; &amp;gt; setting various css on the body and appending test elements, later
&lt;br&gt;&amp;gt; &amp;gt; resetting everything using the original cssText.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Jul 5, 10:21 pm, &amp;quot;John Resig&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356853&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jere...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The APE library recently released some information on library
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; compatibility of .offset() methods and speed:&lt;a href=&quot;http://dhtmlkitchen.com/ape/example/dom/compare/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/example/dom/compare/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; The test suite used:&lt;a href=&quot;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; To start, we need to investigate the relative positioning issues in
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; Firefox 2 and Safari 3.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; I know that we've looked at performance issues in the past - but are
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; there any additional thoughts?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;&amp;gt; --John
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356853&amp;i=3&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356853&amp;i=4&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://www.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://www.nabble.com/.offset%28%29-improvements-needed-tp18295928s27240p18356853.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18356810</id>
	<title>Re: [accordion] animation effect on open and close</title>
	<published>2008-07-09T01:31:23Z</published>
	<updated>2008-07-09T01:31:23Z</updated>
	<author>
		<name>Jörn Zaefferer-2</name>
	</author>
	<content type="html">&lt;br&gt;You can implement your own animation scheme. So far no one asked for
&lt;br&gt;it, so there isn't really any documentation on the matter.
&lt;br&gt;&lt;br&gt;Take a look at the source for the bounceslide scheme:
&lt;br&gt;&lt;a href=&quot;http://ui.jquery.com/bugs/browser/trunk/ui/ui.accordion.js#L275&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ui.jquery.com/bugs/browser/trunk/ui/ui.accordion.js#L275&lt;/a&gt;&lt;br&gt;&lt;br&gt;So to add your own, something like this:
&lt;br&gt;&lt;br&gt;$.ui.accordion.animations.superbounce = function(options) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; this.slide(options, {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; easing: options.down ? &amp;quot;bounceout&amp;quot; : &amp;quot;bouncein&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; duration: options.down ? 1000 : 500
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;};
&lt;br&gt;&lt;br&gt;The use via animated: &amp;quot;superbounce&amp;quot;.
&lt;br&gt;&lt;br&gt;Jörn
&lt;br&gt;&lt;br&gt;On Wed, Jul 9, 2008 at 1:32 AM, Shadi Almosri &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356810&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;salmosri@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hiya,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; We are currently implementing the accordion as the main navigation for
&lt;br&gt;&amp;gt; our site: &lt;a href=&quot;http://www.softerlogic.com/v3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softerlogic.com/v3/&lt;/a&gt;&amp;nbsp;i was wondering if anyone
&lt;br&gt;&amp;gt; knew how we can get the bounce animation that you get when opening an
&lt;br&gt;&amp;gt; accordion to occur in reverse.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To understand
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; go to the link &lt;a href=&quot;http://www.softerlogic.com/v3/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.softerlogic.com/v3/&lt;/a&gt;.
&lt;br&gt;&amp;gt;&amp;gt; click on 03 Technical Services in the top left, you will see the animation as the accordion drops.
&lt;br&gt;&amp;gt;&amp;gt; now at the bottom click on 01 home, and the accordion will go back up
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When it goes up it goes back up very fast with no animation, is there
&lt;br&gt;&amp;gt; anyway to imitate the easing animation for that 3rd step or at least
&lt;br&gt;&amp;gt; control the speed in which it returns?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Shadi Almosri
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356810&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356810&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://www.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://www.nabble.com/-accordion--animation-effect-on-open-and-close-tp18355336s27240p18356810.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18356590</id>
	<title>Re: jQuery function to close a window</title>
	<published>2008-07-09T01:15:00Z</published>
	<updated>2008-07-09T01:15:00Z</updated>
	<author>
		<name>Andrea Giammarchi-2</name>
	</author>
	<content type="html">I miss the match between native close function, and jQuery.&lt;br&gt;&lt;br&gt;close works as expected with popups and, as far as I know, with every browser, while for other cases (tabs, main window) it depends on browser.&lt;br&gt;&lt;br&gt;I think you are not using a popup, and while I am sure jQuery is &amp;quot;magic&amp;quot;, it is not magic enough to force its &amp;quot;driver&amp;quot;, the browser, to do something probably unauthorized.&lt;br&gt;
&lt;br&gt;Is this your case?&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 10:46 PM, Ricco831 &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356590&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chon.neth@...&lt;/a&gt;&amp;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;
&lt;br&gt;
jQuery is awesome! &amp;nbsp;You can call one method to do something and it&lt;br&gt;
will work in all modern browsers. &amp;nbsp;But recently i came it across and&lt;br&gt;
issue where window.close() javascript method doesn&amp;#39;t work for all&lt;br&gt;
browsers, particularly IE and Firefox. &amp;nbsp;Can you add a simple method to&lt;br&gt;
be able to close a window that will work in all browsers?&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356590&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18356590&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 http://groups.google.com/group/jquery-dev?hl=en &lt;br&gt; -~----------~----~----~----~------~----~------~--~---&lt;br&gt;
&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/jQuery-function-to-close-a-window-tp18350647s27240p18356590.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18355925</id>
	<title>Re: change dialog options before open</title>
	<published>2008-07-09T00:25:12Z</published>
	<updated>2008-07-09T00:25:12Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">Yes, if you&amp;#39;re trying to change it from having two buttons (Ok, Cancel) to only having one (Ok). If you still want a Cancel button, you&amp;#39;ll need to specify both.&lt;br&gt;&lt;br&gt;One note in your code: there shouldn&amp;#39;t be parentheses after the function names passed as the values for Ok (add_new_rec, modify_rec) as this would call the function and give it&amp;#39;s return value as the value for the Ok callback, instead of the function itself.&lt;br&gt;
&lt;br&gt;- Richard&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 10:38 PM, jack &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355925&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;datactrl@...&lt;/a&gt;&amp;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;
&lt;br&gt;
Thank you, Richard&lt;br&gt;
&lt;br&gt;
So I can do as the following:&lt;br&gt;
&lt;br&gt;
var my_dialog = $(&amp;#39;&amp;lt;div id=&amp;quot;input_addnew&amp;quot; class=&amp;quot;flora&amp;quot;&amp;gt;&amp;lt;/&lt;br&gt;
div&amp;gt;&amp;#39;).dialog({&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;autoOpen: false,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;resizable: false,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;title: &amp;quot;Add New Data&amp;quot;,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;modal: true,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;buttons: {&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;Ok&amp;quot;: add_new_rec(),&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;quot;Cancel&amp;quot;: function() { $(this).dialog(&amp;quot;close&amp;quot;); }&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;br&gt;
&amp;nbsp;});&lt;br&gt;
&lt;br&gt;
$(my_dialog).data(&amp;quot;title.dialog&amp;quot;,&amp;quot;Modify Data&amp;quot;).data(&amp;quot;buttons.dialog&amp;quot;,&lt;br&gt;
{&amp;quot;OK&amp;quot;:modify_rec()}).dialog(&amp;quot;open&amp;quot;);&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;
&lt;br&gt;
Jack&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;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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355925&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355925&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 http://groups.google.com/group/jquery-ui?hl=en &lt;br&gt; -~----------~----~----~----~------~----~------~--~---&lt;br&gt;
&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/change-dialog-options-before-open-tp18334902s27240p18355925.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18355553</id>
	<title>dialog stack option</title>
	<published>2008-07-08T23:54:18Z</published>
	<updated>2008-07-08T23:54:18Z</updated>
	<author>
		<name>tony h-4</name>
	</author>
	<content type="html">&lt;br&gt;hi, is it possible to set stack option of a dialog using .data()?
&lt;br&gt;&lt;br&gt;eg.
&lt;br&gt;$(box).data(&amp;quot;stack.dialog&amp;quot;,true);
&lt;br&gt;&lt;br&gt;This would be helpful for re-using iframe based dialogs where you want
&lt;br&gt;to move them to the top without reloading them via dialog(&amp;quot;open&amp;quot;).
&lt;br&gt;&lt;br&gt;help appreciated, cheers, tony
&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355553&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355553&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://www.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://www.nabble.com/dialog-stack-option-tp18355553s27240p18355553.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18355342</id>
	<title>Re: Cross domain problems</title>
	<published>2008-07-08T23:30:43Z</published>
	<updated>2008-07-08T23:30:43Z</updated>
	<author>
		<name>Alexsandro_xpt</name>
	</author>
	<content type="html">&lt;br&gt;Well, I thought this is security browser issue.
&lt;br&gt;&lt;br&gt;I always solve this problem this way:
&lt;br&gt;Eg.:
&lt;br&gt;&lt;br&gt;To ajax this:
&lt;br&gt;&lt;a href=&quot;http://feedproxy.feedburner.com/undergoogle&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://feedproxy.feedburner.com/undergoogle&lt;/a&gt;&lt;br&gt;&lt;br&gt;I create this:
&lt;br&gt;&lt;a href=&quot;http://blog.alexsandro.com.br/application/load/feedproxy.feedburner.com/undergoogle&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://blog.alexsandro.com.br/application/load/feedproxy.feedburner.com/undergoogle&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Alexsandro
&lt;br&gt;www.alexsandro.com.br
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 9 jul, 00:18, &amp;quot;Erik Beeson&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355342&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;erik.bee...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Add this somewhere in your javascript:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; document.domain = 'site.com';
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Google document domain
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --Erik
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 7/8/08, flycast &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355342&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;e...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  Simple problem (I think)...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  I am new to JS and ajax.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  I am building an ajax capability on a clients site. I am running into
&lt;br&gt;&amp;gt; &amp;gt;  cross domain problems. If I get the page using the url formhttp://www.site.com
&lt;br&gt;&amp;gt; &amp;gt;  but I do a load using the url form &amp;quot;&lt;a href=&quot;http://site.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://site.com&lt;/a&gt;&amp;quot; (www vs. no www
&lt;br&gt;&amp;gt; &amp;gt;  in the url) I get nothing but a js error.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;  What is the best way to handle making sure that if the person is at
&lt;br&gt;&amp;gt; &amp;gt;  the site with OR without the &amp;quot;www&amp;quot; in the url that the .load will
&lt;br&gt;&amp;gt; &amp;gt;  still work?
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Cross-domain-problems-tp18353723s27240p18355342.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18354942</id>
	<title>Re: UI:Dialog Scrollbars ?</title>
	<published>2008-07-08T22:54:42Z</published>
	<updated>2008-07-08T22:54:42Z</updated>
	<author>
		<name>Jaime Ochoa Malagón</name>
	</author>
	<content type="html">&lt;br&gt;function alert(strMsg) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Actual=$('&amp;lt;div/&amp;gt;')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .append('&amp;lt;div id=&amp;quot;alert&amp;quot;
&lt;br&gt;style=&amp;quot;overflow:auto;height:272;width:453;position:absolute;top:32;left:10;&amp;quot;&amp;gt;'+strMsg+'&amp;lt;/div&amp;gt;')
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; .dialog({
&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; bgiframe:true,
&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; height:350,
&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; width:470,
&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; modal:true,
&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; resize: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;$(&amp;quot;#alert&amp;quot;).height($(this).height()-78);
&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;$(&amp;quot;#alert&amp;quot;).width($(this).width()+5);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; },
&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; overlay:{opacity:0.5,background:'white'},
&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; buttons: {'Aceptar':function(){ $(this).empty().dialog('destroy'); }},
&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; title:'Atenci&amp;oacute;n'
&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 Mon, Jul 7, 2008 at 10:40 PM, Initri &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354942&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;initri@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hello!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have been poking around the source of jQuery UI.Dialog and there
&lt;br&gt;&amp;gt; seems absolutely no option for scrollbars, for longer content.
&lt;br&gt;&amp;gt; I have tried various means of setting &amp;quot;overflow: auto&amp;quot;, etc. to it,
&lt;br&gt;&amp;gt; with no effect.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; * Note:
&lt;br&gt;&amp;gt; I did modify the source (ui.dialog.js) to change the line &amp;quot;overflow:
&lt;br&gt;&amp;gt; none&amp;quot; to &amp;quot;overflow: auto&amp;quot; and it does draw scrollbars, but 'outside'
&lt;br&gt;&amp;gt; of the content, and within the border which doesn't quite look right.
&lt;br&gt;&amp;gt; * Note 2:
&lt;br&gt;&amp;gt; Also of note, when there is &amp;quot;more content&amp;quot; and a button is enabled..
&lt;br&gt;&amp;gt; the content appears behind the button.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Is there a way that I can get scrollbars to appear when the contents
&lt;br&gt;&amp;gt; of a dialog are larger than the window itself ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thank you!
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Matthew
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Perhaps the depth of love can be calibrated by the number of different
&lt;br&gt;selves that are actively involved in a given relationship.
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Carl Sagan (Contact)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Jaime Ochoa Malagón
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Arquitecto de Soluciones
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Cel: +52 (55) 1021 0774
&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354942&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354942&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://www.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://www.nabble.com/UI%3ADialog-Scrollbars---tp18334906s27240p18354942.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18354216</id>
	<title>Re: Future Animations and Units of Measurement</title>
	<published>2008-07-08T21:20:11Z</published>
	<updated>2008-07-08T21:20:11Z</updated>
	<author>
		<name>chris thatcher-4</name>
	</author>
	<content type="html">Wow Jack, Zeitgeist. Re the Big J obviously a Can O&amp;#39; Worms.&amp;nbsp; Is this why flash abstracts the notion of a Frame or is that different?&amp;nbsp; Eg so Frame rate can be set once and we can still talk in terms of frames/sec, or am I misunderstanding?&amp;nbsp; I&amp;#39;m assuming the Frame has an inherent notion of dimension.&amp;nbsp; Been a long time since I tweened and rolled but...&lt;br&gt;
&lt;br&gt;Thatcher&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 7:33 PM, John Resig &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354216&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeresig@...&lt;/a&gt;&amp;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;
&lt;br&gt;
I like this idea a lot. I fiddled around with trying to make a plugin&lt;br&gt;
for this, but it wouldn&amp;#39;t be trivial (too many functions would need&lt;br&gt;
little modifications). Something like this:&lt;br&gt;
&lt;br&gt;
.hide(&amp;quot;50px/s&amp;quot;)&lt;br&gt;
&lt;br&gt;
The big problem that I see is that it would require that all&lt;br&gt;
properties that you animate are using the same unit. The above&lt;br&gt;
wouldn&amp;#39;t work since you can&amp;#39;t animate opacity at 50px/s.&lt;br&gt;
&lt;br&gt;
Maybe as properties?&lt;br&gt;
&lt;br&gt;
.animate({height: &amp;quot;50px/s&amp;quot;, opacity: &amp;quot;0.1/s&amp;quot;})&lt;br&gt;
&lt;br&gt;
Dunno.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--John&lt;br&gt;
&lt;/font&gt;&lt;div&gt;&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;
&lt;br&gt;
On Tue, Jul 8, 2008 at 6:08 PM, jack &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354216&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jacklukic@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So the current coding convention across popular javascript libraries&lt;br&gt;
&amp;gt; is to specify animations in terms of total milliseconds, but now that&lt;br&gt;
&amp;gt; jquery has gone ahead and included dimensions.js as part of the core,&lt;br&gt;
&amp;gt; perhaps its time to revise this concept.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; To create consistent animations, with complete control and accuracy,&lt;br&gt;
&amp;gt; it would make more sense to use a derived unit, something like pixels&lt;br&gt;
&amp;gt; per second, than a unit of time (ms). For two &amp;lt;div&amp;gt; elements to&lt;br&gt;
&amp;gt; animate with a consistent speed they have to have similar velocities,&lt;br&gt;
&amp;gt; not durations. If for example youre doing any sort of slider,&lt;br&gt;
&amp;gt; accordion. This is especially essential for partially animating.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; example:&lt;br&gt;
&amp;gt; i.e. you are opening a div, and want to close it mid-animation.&lt;br&gt;
&amp;gt; currently you would do something like $(this).stop().slideDown(&amp;#39;200&amp;#39;),&lt;br&gt;
&amp;gt; however because the size of the div thats animating back is unknown it&lt;br&gt;
&amp;gt; will seem inconsistently slow or fast compared to the first animation.&lt;br&gt;
&amp;gt; To create consistent animations, you have to calculate the total&lt;br&gt;
&amp;gt; distance being animated, and then multiply that by some arbitrary unit&lt;br&gt;
&amp;gt; of velocity. (pixels per second anyone?).&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; so lets for example youre starting with a hidden div and animating it&lt;br&gt;
&amp;gt; to 500px size, and you want the total duration to be 200 ms.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 500px - 0px = 500px (total distance traversed)&lt;br&gt;
&amp;gt; 0.2 seconds (total animation time)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; 500 / 0.2 = 2500 pixels per second.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; using this derived unit, we can then calculate a consistent speed for&lt;br&gt;
&amp;gt; other animating distances, say if we want to close that same DIV while&lt;br&gt;
&amp;gt; its currently being animated. To calculate the return time in&lt;br&gt;
&amp;gt; millseconds we&amp;#39;d only need two pieces of information&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; PPS (pixels per second)- determined earlier as a desired 2500 pps,&lt;br&gt;
&amp;gt; and&lt;br&gt;
&amp;gt; distance of animation in pixels - partially opened div height minus&lt;br&gt;
&amp;gt; closed div height&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Using a derived unit like PPS, would greatly increase the quality of&lt;br&gt;
&amp;gt; animations and the specificity which they could be defined. The only&lt;br&gt;
&amp;gt; extra information you need to work with derived units would be the&lt;br&gt;
&amp;gt; distance of animations in pixels, delta P, aka $(this).height() before&lt;br&gt;
&amp;gt; and after an animation.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I&amp;#39;m not fimiliar enough with jquery&amp;#39;s core architecture to suggest an&lt;br&gt;
&amp;gt; implementation, but as a jquery developer i was hoping that perhaps&lt;br&gt;
&amp;gt; the greater community would have more insight and feedback to the&lt;br&gt;
&amp;gt; idea. Inconsistent animations are definitely a pet peeve, and is often&lt;br&gt;
&amp;gt; one of the first things IA/UX specialists notice about workign with&lt;br&gt;
&amp;gt; jquery and other javascript libraries.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; So please let me know what you think about the suggestion, and the&lt;br&gt;
&amp;gt; viability of this idea.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; -Jack Lukic&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;gt;&lt;br&gt;
&amp;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;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Christopher Thatcher&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354216&amp;i=2&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18354216&amp;i=3&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 http://groups.google.com/group/jquery-dev?hl=en &lt;br&gt; -~----------~----~----~----~------~----~------~--~---&lt;br&gt;
&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Future-Animations-and-Units-of-Measurement-tp18350634s27240p18354216.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353927</id>
	<title>Re: 1.2.4 to 1.2.6 question</title>
	<published>2008-07-08T20:40:10Z</published>
	<updated>2008-07-08T20:40:10Z</updated>
	<author>
		<name>Karl Swedberg-2</name>
	</author>
	<content type="html">&lt;html&gt;&lt;body style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;Hi Shelane,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I just had major issues today adding some jQuery (1.2.6) to an old site that has legacy Prototype code. This has come up a few times before on the list, but I totally forgot about that while I was in the midst of my agony. If I recall correctly, the conflict only occurs with certain versions of Prototype.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I got around my particular issue by calling the same function&amp;nbsp;separately&amp;nbsp;on two IDs instead of calling it just once with both IDs in a single selector. Maybe Prototype is doing something funky to the arrays that jQuery selectors build? I don't know.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I wonder if Ariel's suggestion from a previous post on the dev list -- &quot;If you upgrade Scriptaculous to 1.8.1, it should work well&quot; &amp;nbsp;-- would apply here as well.&amp;nbsp;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;pause/&gt; &amp;lt;search/&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Aha! Michael Geary explains it here: [1]&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;/div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;Your page is loading script.aculo.us effects.js v1.7.1_beta3. This file&lt;br&gt;defines Array.prototype.call as a function.&lt;br&gt;&lt;br&gt;That causes massive confusion inside jQuery 1.2.6, but not in 1.2.3. The&lt;br&gt;reason is the change that was made to jQuery's makeArray() function in 1.2.6&lt;br&gt;- if the code is passed an array that has a call method, it mistakenly&lt;br&gt;thinks it is not an array and does the wrong thing - line 1135 of&lt;br&gt;jquery-1.2.6.js is the pertinent code here. (The correct fix isn't&lt;br&gt;immediately obvious, but I'll file a ticket on this.)&lt;br&gt;&lt;br&gt;As it happens, the current version of script.aculo.us effects.js, v1.8.1, no&lt;br&gt;longer defines Array.prototype.call.&lt;/div&gt;&lt;div&gt;&lt;div apple-content-edited=&quot;true&quot;&gt; &lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;div&gt;&lt;div apple-content-edited=&quot;true&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-align: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant: normal; font-weight: normal; letter-spacing: normal; line-height: normal; orphans: 2; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px; -webkit-text-decorations-in-effect: none; -webkit-text-size-adjust: auto; -webkit-text-stroke-width: 0px; &quot;&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;[1]&amp;nbsp;&lt;a href=&quot;http://groups.google.com/group/jquery-en/browse_thread/thread/5a83b3b23e38a6a7/5a91e47087a1555e?hl#msg_c63cabcb38ffcb8b&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://groups.google.com/group/jquery-en/browse_thread/thread/5a83b3b23e38a6a7/5a91e47087a1555e?hl#msg_c63cabcb38ffcb8b&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Anyway, thanks for jogging my memory with your post. Maybe I'll revisit my code in the morning and see if I can upgrade prototype and get a less hacky solution going.&lt;/div&gt;&lt;div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;--Karl&lt;br class=&quot;Apple-interchange-newline&quot;&gt;____________&lt;/div&gt;&lt;div&gt;Karl Swedberg&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://www.englishrules.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.englishrules.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://www.learningjquery.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.learningjquery.com&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;/span&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;/span&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt; &lt;/div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On Jul 8, 2008, at 5:27 PM, Shelane wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div&gt;&lt;br&gt;It looks like the problem has to do with me still having prototype on&lt;br&gt;the page. &amp;nbsp;It's the first jQuery site I ever did and the autocomplete&lt;br&gt;plugin wasn't far enough along for me to use at that point. &amp;nbsp;I've&lt;br&gt;pointed to an older version of jQuery until I get around to rewriting&lt;br&gt;that page to use the jQuery autocomplete.&lt;br&gt;&lt;br&gt;On Jul 8, 1:39 pm, Shelane Enos &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353927&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;se...@...&lt;/a&gt;&gt; wrote:&lt;br&gt;&lt;blockquote type=&quot;cite&quot;&gt;I just found out that this function that worked (doubled checked to confirm)&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;worked under 1.2.4 but isn't working under 1.2.6. &amp;nbsp;I'm not sure what. &amp;nbsp;Can&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;anyone see anything obvious?&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;bindDeleteLinks = function(who){&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&quot;a.rembtn&quot;, '#' + who).unbind('click');&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(&quot;a.rembtn&quot;, '#' + who).click(function(){&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;console.log('bound and clicked ' + who);&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(('#' + this.id + 'row')).css({display:'none'});&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$.get('includes/tools/runtime.lasso?task=meetings&amp;amp;who=' + who +&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;'&amp;amp;method=remove&amp;amp;pageID=' + pageID + '&amp;amp;rel=' + this.id);&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;return false;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;br&gt;&lt;/blockquote&gt;&lt;blockquote type=&quot;cite&quot;&gt;Under 1.2.6, the console message doesn't even show.&lt;br&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/1.2.4-to-1.2.6-question-tp18348569s27240p18353927.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18355339</id>
	<title>Re: Links injected with jQuery not active in IE6</title>
	<published>2008-07-08T20:39:15Z</published>
	<updated>2008-07-08T20:39:15Z</updated>
	<author>
		<name>M. Miller</name>
	</author>
	<content type="html">&lt;br&gt;Funny, after setting up a test page I resolved my problem. It seems
&lt;br&gt;that a bug causes links inside nested floats to sometimes become
&lt;br&gt;inactive in IE6. Removing the float, or strangely, removing the
&lt;br&gt;background image, caused the inserted links to function properly.
&lt;br&gt;&lt;br&gt;More about the bug here: &lt;a href=&quot;http://www.positioniseverything.net/explorer/dup-characters.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.positioniseverything.net/explorer/dup-characters.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Thanks for the input,
&lt;br&gt;-Matt
&lt;br&gt;&lt;br&gt;On Jul 7, 10:15 pm, &amp;quot;Michael Geary&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355339&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 think a lot of pages do this successfully.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Can you post a link to a simple test page? It's kind of hard to guess what
&lt;br&gt;&amp;gt; might be wrong otherwise.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Mike
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I am using jQuery to insert a series of links into a containing div.
&lt;br&gt;&amp;gt; &amp;gt; Upon insertion, these links are active in Firefox and Safari,
&lt;br&gt;&amp;gt; &amp;gt; but are not active (clickable) in IE6 (what a surprise.)
&lt;br&gt;&amp;gt; &amp;gt; While Internet explorer 6 does visually render the inserted
&lt;br&gt;&amp;gt; &amp;gt; code, it seems that the html elements are not recognized. If
&lt;br&gt;&amp;gt; &amp;gt; the same html is included in the initial code, the links work
&lt;br&gt;&amp;gt; &amp;gt; fine. However, when the are inserted after the DOM is loaded,
&lt;br&gt;&amp;gt; &amp;gt; they are not.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Has anyone encountered similar problems, or is there a known
&lt;br&gt;&amp;gt; &amp;gt; workaround to this problem?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks in advance,
&lt;br&gt;&amp;gt; &amp;gt; Matt
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Links-injected-with-jQuery-not-active-in-IE6-tp18314165s27240p18355339.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353901</id>
	<title>Re: caching AJAX data?</title>
	<published>2008-07-08T20:23:22Z</published>
	<updated>2008-07-08T20:23:22Z</updated>
	<author>
		<name>krozinov@gmail.com</name>
	</author>
	<content type="html">&lt;br&gt;What I ended up doing was setting a variable and testing for it. &amp;nbsp;If
&lt;br&gt;it's set, then I just toggle the display instead of grabbing the data
&lt;br&gt;via AJAX.
&lt;br&gt;&lt;br&gt;On Jul 8, 1:19 am, &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353901&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;krozi...@...&lt;/a&gt;&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353901&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;krozi...@...&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 have a page with a photo and comments on it.  I load the replies to
&lt;br&gt;&amp;gt; the comments for this photo via an AJAX request like so (I also use
&lt;br&gt;&amp;gt; LiveQuery):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; JavaScript:
&lt;br&gt;&amp;gt; /* Show Replies button action. */
&lt;br&gt;&amp;gt; $(&amp;quot;.show_replies&amp;quot;).livequery('click', function()
&lt;br&gt;&amp;gt; {
&lt;br&gt;&amp;gt;    var photo_id_val = $(&amp;quot;#photo_id&amp;quot;).val();
&lt;br&gt;&amp;gt;    var comment_id_val = $(this).attr(&amp;quot;id&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;    $.post(&amp;quot;/show_comments&amp;quot;, { photo_id: photo_id_val, comment_id:
&lt;br&gt;&amp;gt; comment_id_val }, function(data)
&lt;br&gt;&amp;gt;    {
&lt;br&gt;&amp;gt;        /* Update the div that holds the replies. */
&lt;br&gt;&amp;gt;        $(&amp;quot;#replies_for_&amp;quot;+comment_id_val).html(data);
&lt;br&gt;&amp;gt;        $(&amp;quot;#replies_for_&amp;quot;+comment_id_val).slideToggle();
&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; HTML:
&lt;br&gt;&amp;gt; &amp;lt;span id=&amp;quot;c4&amp;quot; class=&amp;quot;show_replies&amp;quot; title=&amp;quot;Show the Replies&amp;quot;&amp;gt;Show
&lt;br&gt;&amp;gt; Replies&amp;lt;/span&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;div id=&amp;quot;replies_for_c4&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So everytime I click on &amp;quot;Show Replies&amp;quot; span, it would load up the
&lt;br&gt;&amp;gt; replies via AJAX and slide them in and out.  This works fine.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; My question is the following:
&lt;br&gt;&amp;gt; Is it possible to load the replies ONCE and just slideToggle them,
&lt;br&gt;&amp;gt; instead of loading them via AJAX every time the &amp;quot;Show Replies&amp;quot; is
&lt;br&gt;&amp;gt; clicked?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any ideas or help would be greatly appreciated.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Konstantin
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/caching-AJAX-data--tp18337100s27240p18353901.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353755</id>
	<title>Re: Cross domain problems</title>
	<published>2008-07-08T20:18:12Z</published>
	<updated>2008-07-08T20:18:12Z</updated>
	<author>
		<name>Erik Beeson</name>
	</author>
	<content type="html">&lt;br&gt;Add this somewhere in your javascript:
&lt;br&gt;&lt;br&gt;document.domain = 'site.com';
&lt;br&gt;&lt;br&gt;Google document domain
&lt;br&gt;&lt;br&gt;--Erik
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 7/8/08, flycast &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353755&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;eric@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;Simple problem (I think)...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;I am new to JS and ajax.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;I am building an ajax capability on a clients site. I am running into
&lt;br&gt;&amp;gt; &amp;nbsp;cross domain problems. If I get the page using the url form &lt;a href=&quot;http://www.site.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.site.com&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;nbsp;but I do a load using the url form &amp;quot;&lt;a href=&quot;http://site.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://site.com&lt;/a&gt;&amp;quot; (www vs. no www
&lt;br&gt;&amp;gt; &amp;nbsp;in the url) I get nothing but a js error.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;What is the best way to handle making sure that if the person is at
&lt;br&gt;&amp;gt; &amp;nbsp;the site with OR without the &amp;quot;www&amp;quot; in the url that the .load will
&lt;br&gt;&amp;gt; &amp;nbsp;still work?
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Cross-domain-problems-tp18353723s27240p18353755.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353723</id>
	<title>Cross domain problems</title>
	<published>2008-07-08T20:01:34Z</published>
	<updated>2008-07-08T20:01:34Z</updated>
	<author>
		<name>Eric Snyder</name>
	</author>
	<content type="html">&lt;br&gt;Simple problem (I think)...
&lt;br&gt;&lt;br&gt;I am new to JS and ajax.
&lt;br&gt;&lt;br&gt;I am building an ajax capability on a clients site. I am running into
&lt;br&gt;cross domain problems. If I get the page using the url form &lt;a href=&quot;http://www.site.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.site.com&lt;/a&gt;&lt;br&gt;but I do a load using the url form &amp;quot;&lt;a href=&quot;http://site.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://site.com&lt;/a&gt;&amp;quot; (www vs. no www
&lt;br&gt;in the url) I get nothing but a js error.
&lt;br&gt;&lt;br&gt;What is the best way to handle making sure that if the person is at
&lt;br&gt;the site with OR without the &amp;quot;www&amp;quot; in the url that the .load will
&lt;br&gt;still work?
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Cross-domain-problems-tp18353723s27240p18353723.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353724</id>
	<title>text box validation based on radio button value</title>
	<published>2008-07-08T19:47:43Z</published>
	<updated>2008-07-08T19:47:43Z</updated>
	<author>
		<name>prem jonnala</name>
	</author>
	<content type="html">&lt;br&gt;Hi I need to validate fields based on radio button ,In the following
&lt;br&gt;code I need to validate the routing number textbox only if the &amp;quot;Check&amp;quot;
&lt;br&gt;Radio button is selected
&lt;br&gt;I have defined the rules but it is not working . If you have any
&lt;br&gt;suggestion please let me know
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------Custom method ---------------------------
&lt;br&gt;&amp;nbsp;$.validator.addMethod(&amp;quot;isvalidbankroutingnumber&amp;quot;, function(value) {
&lt;br&gt;&amp;nbsp; var rtnArray = value.split(&amp;quot;&amp;quot;);
&lt;br&gt;&amp;nbsp; var firstPart = 3*(parseInt(rtnArray[0]) + parseInt(rtnArray[3]) +
&lt;br&gt;parseInt(rtnArray[6]));
&lt;br&gt;&amp;nbsp; var secondPart = 7*(parseInt(rtnArray[1]) + parseInt(rtnArray[4]) +
&lt;br&gt;parseInt(rtnArray[7]));
&lt;br&gt;&amp;nbsp; var thirdPart &amp;nbsp;= 1*(parseInt(rtnArray[2]) + parseInt(rtnArray[5]) +
&lt;br&gt;parseInt(rtnArray[8]))
&lt;br&gt;&lt;br&gt;&amp;nbsp; var rtnModulus = &amp;nbsp;(firstPart + secondPart + thirdPart)%10
&lt;br&gt;&lt;br&gt;&amp;nbsp; if(rtnModulus == 0){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; return true;
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;&lt;br&gt;&amp;nbsp;}, 'Please enter valid routing number');
&lt;br&gt;&lt;br&gt;-------------------------------- Rules ------------------
&lt;br&gt;&lt;br&gt;&amp;nbsp; rnumber: {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;required:&amp;quot;#check:checked&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;isvalidbankroutingnumber: &amp;quot;#check:checked&amp;quot;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;------------ HTML -------------------------------
&lt;br&gt;&amp;nbsp;&amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;label for=&amp;quot;rnumber&amp;quot;&amp;gt;routing number&amp;lt;/label&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;input name=&amp;quot;rnumber&amp;quot; id=&amp;quot;rnumber&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;label &amp;gt;Check&amp;lt;/label&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;accounttype&amp;quot; id=&amp;quot;checktyppe&amp;quot; /&amp;gt;&amp;lt;/
&lt;br&gt;td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;label &amp;gt;ACH&amp;lt;/label&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td&amp;gt;&amp;lt;input type=&amp;quot;radio&amp;quot; name=&amp;quot;accounttype&amp;quot; id=&amp;quot;ach&amp;quot; /&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;lt;td&amp;gt;&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353724&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353724&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://www.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://www.nabble.com/text-box-validation-based-on-radio-button-value-tp18353724s27240p18353724.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353336</id>
	<title>Theme Roller Size Issues</title>
	<published>2008-07-08T19:44:05Z</published>
	<updated>2008-07-08T19:44:05Z</updated>
	<author>
		<name>John Farrar-3</name>
	</author>
	<content type="html">&lt;br&gt;I hope this is a fresh thread. (Likely I am just doing something but
&lt;br&gt;can't see what.)
&lt;br&gt;&lt;br&gt;I created this theme...
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://ui.jquery.com/themeroller#bgColorDefault=809d92&amp;bgTextureDefault=04_highlight_hard.png&amp;bgImgOpacityDefault=75&amp;borderColorDefault=809d92&amp;fcDefault=1D38B8&amp;iconColorDefault=1D38B8&amp;bgColorHover=809d92&amp;bgTextureHover=04_highlight_hard.png&amp;bgImgOpacityHover=75&amp;borderColorHover=384c45&amp;fcHover=00f800&amp;iconColorHover=00f800&amp;bgColorActive=d6d2cc&amp;bgTextureActive=01_flat.png&amp;bgImgOpacityActive=65&amp;borderColorActive=384c45&amp;fcActive=009900&amp;iconColorActive=222222&amp;bgColorContent=ece9e4&amp;fcContent=222222&amp;ffDefault=Verdana%2C+Arial%2C+sans-serif&amp;fwDefault=bold&amp;fsDefault=12&amp;fsDefaultUnit=px&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://ui.jquery.com/themeroller#bgColorDefault=809d92&amp;bgTextureDefault=04_highlight_hard.png&amp;bgImgOpacityDefault=75&amp;borderColorDefault=809d92&amp;fcDefault=1D38B8&amp;iconColorDefault=1D38B8&amp;bgColorHover=809d92&amp;bgTextureHover=04_highlight_hard.png&amp;bgImgOpacityHover=75&amp;borderColorHover=384c45&amp;fcHover=00f800&amp;iconColorHover=00f800&amp;bgColorActive=d6d2cc&amp;bgTextureActive=01_flat.png&amp;bgImgOpacityActive=65&amp;borderColorActive=384c45&amp;fcActive=009900&amp;iconColorActive=222222&amp;bgColorContent=ece9e4&amp;fcContent=222222&amp;ffDefault=Verdana%2C+Arial%2C+sans-serif&amp;fwDefault=bold&amp;fsDefault=12&amp;fsDefaultUnit=px&lt;/a&gt;&lt;br&gt;&lt;br&gt;Which the downloaded code looks like...
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.roundliving.com/skins/sandy_blue/jui/demo.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.roundliving.com/skins/sandy_blue/jui/demo.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;To go with this site...
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.roundliving.com/skins/sandy_blue/index.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.roundliving.com/skins/sandy_blue/index.htm&lt;/a&gt;&lt;br&gt;&lt;br&gt;Here are my struggles.
&lt;br&gt;1. Everything is bigger on the demo page than on the Theme Roller
&lt;br&gt;site.
&lt;br&gt;2. I would like the text of the accordion to match the size of the
&lt;br&gt;Tabs content text.
&lt;br&gt;3. In Safari (windows) the date year select is not showing all of the
&lt;br&gt;8 in 2008.
&lt;br&gt;&lt;br&gt;Suggestions?
&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353336&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353336&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://www.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://www.nabble.com/Theme-Roller-Size-Issues-tp18353336s27240p18353336.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18355857</id>
	<title>Re: change dialog options before open</title>
	<published>2008-07-08T19:38:47Z</published>
	<updated>2008-07-08T19:38:47Z</updated>
	<author>
		<name>jack-134</name>
	</author>
	<content type="html">&lt;br&gt;Thank you, Richard
&lt;br&gt;&lt;br&gt;So I can do as the following:
&lt;br&gt;&lt;br&gt;var my_dialog = $('&amp;lt;div id=&amp;quot;input_addnew&amp;quot; class=&amp;quot;flora&amp;quot;&amp;gt;&amp;lt;/
&lt;br&gt;div&amp;gt;').dialog({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; autoOpen: false,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; resizable: false,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; title: &amp;quot;Add New Data&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; modal: true,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; buttons: {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Ok&amp;quot;: add_new_rec(),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;Cancel&amp;quot;: function() { $(this).dialog(&amp;quot;close&amp;quot;); }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; 	}
&lt;br&gt;&amp;nbsp;});
&lt;br&gt;&lt;br&gt;$(my_dialog).data(&amp;quot;title.dialog&amp;quot;,&amp;quot;Modify Data&amp;quot;).data(&amp;quot;buttons.dialog&amp;quot;,
&lt;br&gt;{&amp;quot;OK&amp;quot;:modify_rec()}).dialog(&amp;quot;open&amp;quot;);
&lt;br&gt;&lt;br&gt;&lt;br&gt;Jack
&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355857&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18355857&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://www.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://www.nabble.com/change-dialog-options-before-open-tp18334902s27240p18355857.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353003</id>
	<title>Re: .offset() improvements needed</title>
	<published>2008-07-08T19:03:29Z</published>
	<updated>2008-07-08T19:03:29Z</updated>
	<author>
		<name>Brandon Aaron</name>
	</author>
	<content type="html">Just created a new branch called &amp;quot;offset_enhancements&amp;quot; to play around with some ideas I&amp;#39;ve got.&lt;br&gt;&lt;br&gt;I just looked over the APE source ... WOW ... 20k uncompressed just for the position file ... our offset file is 6k uncompressed. As usual I&amp;#39;m sure we can find a nice balance of performance/size. &lt;br&gt;
&lt;br&gt;--&lt;br&gt;Brandon Aaron&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 8:29 PM, Brandon Aaron &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353003&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;brandon.aaron@...&lt;/a&gt;&amp;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;
I think it is great to see another library take the offset method to new levels. :)&amp;nbsp; I&amp;#39;ll try to take a more detailed look at the comparison soon and see what I can do to raise the bar again.&lt;br&gt;&lt;br&gt;--&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;Brandon Aaron&lt;/font&gt;&lt;div&gt;
&lt;div&gt;&lt;/div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sat, Jul 5, 2008 at 3:21 PM, John Resig &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353003&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeresig@...&lt;/a&gt;&amp;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;

&lt;br&gt;
The APE library recently released some information on library&lt;br&gt;
compatibility of .offset() methods and speed:&lt;br&gt;
&lt;a href=&quot;http://dhtmlkitchen.com/ape/example/dom/compare/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/example/dom/compare/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The test suite used:&lt;br&gt;
&lt;a href=&quot;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
To start, we need to investigate the relative positioning issues in&lt;br&gt;
Firefox 2 and Safari 3.&lt;br&gt;
&lt;br&gt;
I know that we&amp;#39;ve looked at performance issues in the past - but are&lt;br&gt;
there any additional thoughts?&lt;br&gt;
&lt;br&gt;
--John&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/blockquote&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353003&amp;i=2&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18353003&amp;i=3&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 http://groups.google.com/group/jquery-dev?hl=en &lt;br&gt; -~----------~----~----~----~------~----~------~--~---&lt;br&gt;
&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/.offset%28%29-improvements-needed-tp18295928s27240p18353003.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352941</id>
	<title>Re: Firefox Error (bug?) with Sortable</title>
	<published>2008-07-08T18:56:18Z</published>
	<updated>2008-07-08T18:56:18Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">change&lt;br&gt;&lt;br&gt;void function OnSorted(InE) {&lt;br&gt;&lt;br&gt;to&lt;br&gt;&lt;br&gt;function OnSorted(InE) {&lt;br&gt;&lt;br&gt;- Richard&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 6:25 PM, PeteShaw &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352941&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;kiwipeteshaw@...&lt;/a&gt;&amp;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;&lt;br&gt;
Hi,&lt;br&gt;
&lt;br&gt;
I&amp;#39;ve searched around a bit and can&amp;#39;t find any examples of someone&lt;br&gt;
having the same issue, so hopefully someone out there can help. I&amp;#39;m&lt;br&gt;
try to save sort order server side through a ajax call on sortable&lt;br&gt;
stop.&lt;br&gt;
&lt;br&gt;
I&amp;#39;ve got this to work in IE6/7 using the stop: event to call a&lt;br&gt;
function i.e.:&lt;br&gt;
&lt;br&gt;
var sortingOptions = { opacity: .5, containment: &amp;quot;parent&amp;quot;, items:&lt;br&gt;
&amp;quot;.item&amp;quot;, stop: function(e) { OnSorted(e) } };&lt;br&gt;
$(&amp;quot;.toolBelt.sortable&amp;quot;).sortable(sortingOptions);&lt;br&gt;
&lt;br&gt;
which calls another js:&lt;br&gt;
void function OnSorted(InE) {&lt;br&gt;
 &amp;nbsp; //On Drop of Drag Drop sort&lt;br&gt;
&lt;br&gt;
 &amp;nbsp; var ButtonList;&lt;br&gt;
&lt;br&gt;
 &amp;nbsp; ButtonList = InE.target.parentNode.parentNode.parentNode.all;&lt;br&gt;
 &amp;nbsp; var i;&lt;br&gt;
 &amp;nbsp; var query_string = &amp;quot;&amp;quot;;&lt;br&gt;
 &amp;nbsp; //loop through and create querystring from array&lt;br&gt;
 &amp;nbsp; for (i = 0; i &amp;lt;= ButtonList.length-1; i++) {&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; if (ButtonList[i].id!=&amp;quot;&amp;quot;)&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; query_string += ButtonList[i].id + &amp;quot;,&amp;quot;;&lt;br&gt;
 &amp;nbsp; }&lt;br&gt;
&lt;br&gt;
 &amp;nbsp; $.ajax(&lt;br&gt;
 &amp;nbsp; {&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; type: &amp;quot;POST&amp;quot;,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; url: &amp;quot;/Pages/ajaxPostBack.aspx&amp;quot;,&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; data: &amp;quot;postback=EditApp;&amp;quot; + query_string&lt;br&gt;
 &amp;nbsp; });&lt;br&gt;
&lt;br&gt;
However if I try the same operation in Firefox 3 I get the javascript&lt;br&gt;
error:&lt;br&gt;
OnSorted is not defined&lt;br&gt;
[Break on this error] var sortingOptions = { opacity: .5, containment:&lt;br&gt;
&amp;quot;parent&amp;quot;, items...&lt;br&gt;
&lt;br&gt;
Anyone come across this before?&lt;br&gt;
&lt;br&gt;
cheers&lt;br&gt;
&lt;br&gt;
Pete&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Firefox-Error-%28bug-%29-with-Sortable-tp18350643s27240p18352941.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352866</id>
	<title>Re: Draggable by proxy</title>
	<published>2008-07-08T18:49:39Z</published>
	<updated>2008-07-08T18:49:39Z</updated>
	<author>
		<name>Richard D. Worth-2</name>
	</author>
	<content type="html">I would recommend the following:&lt;br&gt;&lt;br&gt;1. On element.mousedown, bind document.mousemove and document.mouseup.&lt;br&gt;2. On document.mouseup, unbind mousemove and mouseup.&lt;br&gt;3. Don&amp;#39;t worry about sending the drag events (mousemove) to the element that&amp;#39;s actually going to be moving, just handle the events at the document level and move the element accordingly.&lt;br&gt;
&lt;br&gt;This is known as event delegation. Especially because your original element isn&amp;#39;t going to move, your safest element is document, to which all others will bubble up.&lt;br&gt;&lt;br&gt;You might want to take a look at the mouse plugin inside jQuery UI&amp;#39;s core (ui.core.js). This is how it&amp;#39;s designed. For examples of use, see any of jQuery UI&amp;#39;s draggable, slider, selectable, sortable. After mousedown (on the target element), everything else is on the document.&lt;br&gt;
&lt;br&gt;- Richard&lt;br&gt;&lt;br&gt;Richard D. Worth&lt;br&gt;&lt;a href=&quot;http://rdworth.org/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://rdworth.org/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 4:52 PM, JohnC &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352866&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;john@...&lt;/a&gt;&amp;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;&lt;br&gt;
Can I (and if so, how) drag an element without actually mouse-downing&lt;br&gt;
and -moving on the element I want to move?&lt;br&gt;
&lt;br&gt;
For reasons I will happily explain, the user can&amp;#39;t actually click on&lt;br&gt;
the object I want them to drag.&lt;br&gt;
&lt;br&gt;
So can I get them to click on something else and then have that pass&lt;br&gt;
the dragging info to the real draggable element?&lt;br&gt;
&lt;br&gt;
(Just to be clear, the proxy mustn&amp;#39;t move - I just want the events of&lt;br&gt;
mousedown/drag to be forwarded to the real draggable element).&lt;br&gt;
&lt;br&gt;
Many thanks.&lt;br&gt;
&lt;br&gt;
Regards&lt;br&gt;
&lt;br&gt;
John&lt;br&gt;
&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Draggable-by-proxy-tp18349716s27240p18352866.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352692</id>
	<title>Re: .offset() improvements needed</title>
	<published>2008-07-08T18:29:55Z</published>
	<updated>2008-07-08T18:29:55Z</updated>
	<author>
		<name>Brandon Aaron</name>
	</author>
	<content type="html">I think it is great to see another library take the offset method to new levels. :)&amp;nbsp; I&amp;#39;ll try to take a more detailed look at the comparison soon and see what I can do to raise the bar again.&lt;br&gt;&lt;br&gt;--&lt;br&gt;Brandon Aaron&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Sat, Jul 5, 2008 at 3:21 PM, John Resig &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352692&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jeresig@...&lt;/a&gt;&amp;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;
&lt;br&gt;
The APE library recently released some information on library&lt;br&gt;
compatibility of .offset() methods and speed:&lt;br&gt;
&lt;a href=&quot;http://dhtmlkitchen.com/ape/example/dom/compare/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/example/dom/compare/&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
The test suite used:&lt;br&gt;
&lt;a href=&quot;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://dhtmlkitchen.com/ape/test/tests/dom/position-f-test.html&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
To start, we need to investigate the relative positioning issues in&lt;br&gt;
Firefox 2 and Safari 3.&lt;br&gt;
&lt;br&gt;
I know that we&amp;#39;ve looked at performance issues in the past - but are&lt;br&gt;
there any additional thoughts?&lt;br&gt;
&lt;br&gt;
--John&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&lt;/blockquote&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352692&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352692&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 http://groups.google.com/group/jquery-dev?hl=en &lt;br&gt; -~----------~----~----~----~------~----~------~--~---&lt;br&gt;
&lt;br&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/.offset%28%29-improvements-needed-tp18295928s27240p18352692.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352658</id>
	<title>imagebox display problem - z-index issue??</title>
	<published>2008-07-08T18:27:21Z</published>
	<updated>2008-07-08T18:27:21Z</updated>
	<author>
		<name>ktpmm5</name>
	</author>
	<content type="html">Im using the imagebox interface plugin to display 6 pictures. &amp;nbsp;However, they display not on top of my page, but partially on top and partially behind the rest of the page - ??? &amp;nbsp; It's not complicated to use, so Im wondering if others have this problem. &amp;nbsp;I'm using it with jquery 1.2.6-
&lt;br&gt;&lt;br&gt;Here is how I'm setting it up-
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; loaderSRC: 'img/loading.gif',
&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; closeHTML: '&lt;img src=&quot;img/close.png&quot; /&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; border: '25'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; );&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/imagebox-display-problem---z-index-issue---tp18352658s27240p18352658.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18353249</id>
	<title>problem with a draggable object</title>
	<published>2008-07-08T18:10:21Z</published>
	<updated>2008-07-08T18:10:21Z</updated>
	<author>
		<name>darren-49</name>
	</author>
	<content type="html">&lt;br&gt;Hi
&lt;br&gt;&lt;br&gt;I wrote a script that makes objects that are kind of like sticky
&lt;br&gt;notes. &amp;nbsp;You can move them around the page. &amp;nbsp;I'm using .draggable() via
&lt;br&gt;the UI core library.
&lt;br&gt;&lt;br&gt;My problem is that these notes often have scroll bars on them. &amp;nbsp;When a
&lt;br&gt;user clicks the scrollbar to scroll the div, they move the object
&lt;br&gt;instead. &amp;nbsp;Using the scroll wheel works as it should (scrolling the
&lt;br&gt;div, not moving it). &amp;nbsp;Is there anything I can do to fix this?
&lt;br&gt;&lt;br&gt;You can see an example here:
&lt;br&gt;&lt;a href=&quot;http://isebeta.uvic.ca/Library/Texts/AYL/M/Scene/1.1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://isebeta.uvic.ca/Library/Texts/AYL/M/Scene/1.1&lt;/a&gt;&lt;br&gt;-click annotations (bottom left)
&lt;br&gt;- click any underlined text
&lt;br&gt;- move / scroll a long note (some notes are short and dont have
&lt;br&gt;scrollbars, some are longer)
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/problem-with-a-draggable-object-tp18353249s27240p18353249.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352367</id>
	<title>Re: cannot post &quot;+&quot; to server</title>
	<published>2008-07-08T17:56:34Z</published>
	<updated>2008-07-08T17:56:34Z</updated>
	<author>
		<name>Erik Beeson</name>
	</author>
	<content type="html">&lt;br&gt;Not a bug. Data is assumed to be escape. Do either:
&lt;br&gt;&lt;br&gt;data: &amp;quot;cmd=&amp;quot; + encodeURIComponent(cmd),
&lt;br&gt;&lt;br&gt;Or:
&lt;br&gt;&lt;br&gt;data: {cmd: cmd},
&lt;br&gt;&lt;br&gt;--Erik
&lt;br&gt;&lt;br&gt;&lt;br&gt;On 7/8/08, Gill Bates &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352367&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;gillbates2@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;in my js:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;function testSubmit(){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; newPostData(&amp;quot;1+2&amp;quot;);
&lt;br&gt;&amp;gt; &amp;nbsp;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;function newPostData(cmd){
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.post(&amp;quot;/servlet/test&amp;quot;,&amp;quot;cmd=&amp;quot;+cmd);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;in my servlet:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;String data = getRequest().getParameter(&amp;quot;cmd&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; System.out.println(data);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;and we got &amp;quot;1 2&amp;quot; but not &amp;quot;1+2&amp;quot; as it should be.
&lt;br&gt;&amp;gt; &amp;nbsp;Is this a bug?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;nbsp;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;/div&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352367&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://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352367&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://www.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://www.nabble.com/cannot-post-%22%2B%22-to-server-tp18352275s27240p18352367.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352264</id>
	<title>Re: Cycle Plugin - play/pause button?</title>
	<published>2008-07-08T17:39:50Z</published>
	<updated>2008-07-08T17:39:50Z</updated>
	<author>
		<name>Eric Greene</name>
	</author>
	<content type="html">&lt;br&gt;Great thanks alot
&lt;br&gt;&lt;br&gt;&amp;gt; Here's a couple demos:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.malsup.com/jquery/cycle/pause.htmlhttp://www.malsup.com/jquery/cycle/hover.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.malsup.com/jquery/cycle/pause.htmlhttp://www.malsup.com/jquery/cycle/hover.html&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/Cycle-Plugin---play-pause-button--tp18349719s27240p18352264.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352259</id>
	<title>changing value of a object sub variable</title>
	<published>2008-07-08T17:29:33Z</published>
	<updated>2008-07-08T17:29:33Z</updated>
	<author>
		<name>Kevin Pepperman</name>
	</author>
	<content type="html">&lt;div&gt;I figured out a workaround for this.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I don&amp;#39;t think it is the best way but it will have to do until I figure out how to do it another way.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I just created all the initial variables as one structure then passed them into the jquery.flash plugin after converting them into the correct format.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;If someone knows a better way please let me know about it.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;workaround:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;jQuery.fn.test = function(options) {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var settings = jQuery.extend({&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; src: &amp;quot;Viewer.swf&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; menu: false,&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; wmode: &amp;#39;Opaque&amp;#39;,&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; width: 270,&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; height: 280,&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; ImagePath: &amp;quot;/myImagePath/&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; xmlPath : &amp;quot;/mtyXmlPath/&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; intX: 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;&amp;nbsp;&amp;nbsp; intY: 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;&amp;nbsp; // ... Plus around 16 other vars.&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; }, options);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; var embedsettings = {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; src&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : settings.src,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; menu&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : settings.menu,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wmode&amp;nbsp;&amp;nbsp;&amp;nbsp; : settings.wmode,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width&amp;nbsp;&amp;nbsp;&amp;nbsp; : settings.width,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height&amp;nbsp;&amp;nbsp; : settings.height,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;flashvars: {&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; ImagePath: settings.ImagePath,&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; xmlPath: settings.xmlPath,&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; intX: settings.intX,&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;intY: settings.intY &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;&amp;nbsp; &amp;nbsp;}&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(this).flash(embedsettings,{ version: 9 });&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;&lt;/div&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Tue, Jul 8, 2008 at 1:04 AM, Kevin Pepperman &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352259&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;chornobyl@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;PADDING-LEFT: 1ex; MARGIN: 0px 0px 0px 0.8ex; BORDER-LEFT: #ccc 1px solid&quot;&gt;
&lt;div&gt;I have a simple plugin working that utilizes the jquery.flash plugin.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;I am using&amp;nbsp;my plugin&amp;nbsp;to load a flash file that has around 20 flashvars. (i only listed a few here).&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Most of the time the default flashvars are fine..but&amp;nbsp;sometimes&amp;nbsp;I&amp;nbsp;need to modify only certain flashvariables... but not all of them.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;My question is how do I change only one of the flashvars so I dont have to add every single flashvar to every methodcall.?&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;my plugin code:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;jQuery.fn.test = function(options) {&lt;br&gt;&amp;nbsp;&amp;nbsp; var settings = jQuery.extend({&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; src: &amp;quot;Viewer.swf&amp;quot;,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; menu: false,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; wmode: &amp;#39;Opaque&amp;#39;,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; width: 270,&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; height: 280,&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; flashvars: {&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; ImagePath: &amp;quot;/myImagePath/&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; xmlPath : &amp;quot;/mtyXmlPath/&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; intX: 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;&amp;nbsp; intY: 0 &lt;/div&gt;
&lt;div&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;// ... Plus around 16 other vars.&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; }&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp; }, options);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; $(this).flash(settings,{ version: 9 });&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; };&lt;/div&gt;
&lt;div&gt;---------------------&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;If I use: &lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp; $(&amp;#39;#mydiv&amp;#39;).test({flashvars: { ImagePath&amp;nbsp;: &amp;quot;/myImagePath/&amp;quot;&amp;nbsp; });&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;It overwrites all the default flashvars.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;and of course this wont work either:&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&amp;nbsp; $(&amp;#39;#mydiv&amp;#39;).test({flashvars.ImagePath&amp;nbsp;: &amp;quot;/myImagePath/&amp;quot;&amp;nbsp; });&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;There must be some way to access just one of the flashvars.&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Anyone know of a way to do this?&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;Thanks!&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;&amp;nbsp;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;Emo Philips &amp;nbsp;- &amp;quot;I got some new underwear the other day. Well, new to me.&amp;quot; 
&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/changing-value-of-a-object-sub-variable-tp18337101s27240p18352259.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352257</id>
	<title>How would I substitute the term jquery('class') for $('class')</title>
	<published>2008-07-08T17:21:10Z</published>
	<updated>2008-07-08T17:21:10Z</updated>
	<author>
		<name>mickbw</name>
	</author>
	<content type="html">&lt;br&gt;I am working on a page that works correctly when I call it directly in
&lt;br&gt;any browser.
&lt;br&gt;&lt;br&gt;If I include the page in my RIA app and run the script in firebug, the
&lt;br&gt;jquery script works correctly.
&lt;br&gt;&lt;br&gt;&amp;nbsp;If I &amp;nbsp;include it in my RIA app with the script part of an
&lt;br&gt;external .js script, the script functions do not work AND do not cause
&lt;br&gt;an error. &amp;nbsp;Other jQuery scripts in the app work without problem.
&lt;br&gt;&lt;br&gt;My assumption is that the script must be conflicting with other
&lt;br&gt;frameworks that use the $() keyword and I know that $() is just a
&lt;br&gt;shortcut for jquery(). &amp;nbsp;Do I have to replace the $ code in both the
&lt;br&gt;external script AND the jquery.js file?
&lt;br&gt;&lt;br&gt;BTW, the offending page is at &lt;a href=&quot;http://67.199.57.74/jobsearchlog/faq.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://67.199.57.74/jobsearchlog/faq.cfm&lt;/a&gt;.
&lt;br&gt;Clicking a question will toggle the display of the answer.
&lt;br&gt;&lt;br&gt;To access the page through the App, go to &lt;a href=&quot;http://67.199.57.74/jobsearchlog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://67.199.57.74/jobsearchlog/&lt;/a&gt;&lt;br&gt;and click FAQ from the top menu.
&lt;br&gt;&lt;br&gt;Any assistance would be greatly appreciated.
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/How-would-I-substitute-the-term-jquery%28%27class%27%29-for-%24%28%27class%27%29-tp18352257s27240p18352257.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18352260</id>
	<title>Re: using doc.ready in an external .js file</title>
	<published>2008-07-08T16:47:29Z</published>
	<updated>2008-07-08T16:47:29Z</updated>
	<author>
		<name>kgosser</name>
	</author>
	<content type="html">&lt;br&gt;Bingo, that was it. Big time &amp;quot;duh&amp;quot; noob moment :)
&lt;br&gt;&lt;br&gt;On Jul 8, 4:50 pm, Carl Von Stetten &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18352260&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;vonner.li...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; kgosser,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Are you loading jQuery.js after your main.js file? &amp;nbsp;If you are, try
&lt;br&gt;&amp;gt; loading jQuery first, as it must be present before using any of its
&lt;br&gt;&amp;gt; functions.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Carl
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; kgosser wrote:
&lt;br&gt;&amp;gt; &amp;gt; Here's what I'm not getting about jQuery from a novice point of view.
&lt;br&gt;&amp;gt; &amp;gt; Let's say I have this:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(document).ready(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(&amp;quot;#switcherBtn&amp;quot;).click(function(){
&lt;br&gt;&amp;gt; &amp;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;quot;#target&amp;quot;).toggleClass(&amp;quot;nodisplay&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp;&amp;lt;/script&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have a function to toggle the display of a certain div. This div is
&lt;br&gt;&amp;gt; &amp;gt; on virtually all my pages, though, so instead of putting this in the
&lt;br&gt;&amp;gt; &amp;gt; header of each page, I want to put it in a global include file, for
&lt;br&gt;&amp;gt; &amp;gt; example main.js.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I don't understand why copying and pasting
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(document).ready(function() {
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(&amp;quot;#switcherBtn&amp;quot;).click(function(){
&lt;br&gt;&amp;gt; &amp;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;quot;#target&amp;quot;).toggleClass(&amp;quot;nodisplay&amp;quot;);
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt; &amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;});
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; into main.js throws this error in Firebug:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; $ is not defined
&lt;br&gt;&amp;gt; &amp;gt; main.js()()main.js (line 1)
&lt;br&gt;&amp;gt; &amp;gt; $(document).ready(function(){
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Any input?
&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.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://www.nabble.com/using-doc.ready-in-an-external-.js-file-tp18349722s27240p18352260.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18351395</id>
	<title>Re: Future Animations and Units of Measurement</title>
	<published>2008-07-08T16:33:49Z</published>
	<updated>2008-07-08T16:33:49Z</updated>
	<author>
		<name>John Resig</name>
	</author>
	<content type="html">&lt;br&gt;I like this idea a lot. I fiddled around with trying to make a plugin
&lt;br&gt;for this, but it wouldn't be trivial (too many functions would need
&lt;br&gt;little modifications). Something like this:
&lt;br&gt;&lt;br&gt;.hide(&amp;quot;50px/s&amp;quot;)
&lt;br&gt;&lt;br&gt;The big problem that I see is that it would require that all
&lt;br&gt;properties that you animate are using the same unit. The above
&lt;br&gt;wouldn't work since you can't animate opacity at 50px/s.
&lt;br&gt;&lt;br&gt;Maybe as properties?
&lt;br&gt;&lt;br&gt;.animate({height: &amp;quot;50px/s&amp;quot;, opacity: &amp;quot;0.1/s&amp;quot;})
&lt;br&gt;&lt;br&gt;Dunno.
&lt;br&gt;&lt;br&gt;--John
&lt;br&gt;&lt;br&gt;&lt;br&gt;On Tue, Jul 8, 2008 at 6:08 PM, jack &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18351395&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;jacklukic@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; So the current coding convention across popular javascript libraries
&lt;br&gt;&amp;gt; is to specify animations in terms of total milliseconds, but now that
&lt;br&gt;&amp;gt; jquery has gone ahead and included dimensions.js as part of the core,
&lt;br&gt;&amp;gt; perhaps its time to revise this concept.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; To create consistent animations, with complete control and accuracy,
&lt;br&gt;&amp;gt; it would make more sense to use a derived unit, something like pixels
&lt;br&gt;&amp;gt; per second, than a unit of time (ms). For two &amp;lt;div&amp;gt; elements to
&lt;br&gt;&amp;gt; animate with a consistent speed they have to have similar velocities,
&lt;br&gt;&amp;gt; not durations. If for example youre doing any sort of slider,
&lt;br&gt;&amp;gt; accordion. This is especially essential for partially animating.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; example:
&lt;br&gt;&amp;gt; i.e. you are opening a div, and want to close it mid-animation.
&lt;br&gt;&amp;gt; currently you would do something like $(this).stop().slideDown('200'),
&lt;br&gt;&amp;gt; however because the size of the div thats animating back is unknown it
&lt;br&gt;&amp;gt; will seem inconsistently slow or fast compared to the first animation.
&lt;br&gt;&amp;gt; To create consistent animations, you have to calculate the total
&lt;br&gt;&amp;gt; distance being animated, and then multiply that by some arbitrary unit
&lt;br&gt;&amp;gt; of velocity. (pixels per second anyone?).
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; so lets for example youre starting with a hidd