<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-15494</id>
	<title>Nabble - jQuery General Discussion</title>
	<updated>2008-07-24T11:07:04Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/jQuery-General-Discussion-f15494.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/jQuery-General-Discussion-f15494.html" />
	<subtitle type="html">&lt;a href=&quot;http://groups.google.com/group/jquery-en&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;General Discussion&lt;/a&gt;&amp;nbsp;- this is the best place to post if you have general questions or concerns. Also, if you've built a site that uses jQuery, or would like to announce a new plugin, this is the place to do it.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-18637470</id>
	<title>Re: Create array based on input value</title>
	<published>2008-07-24T11:07:04Z</published>
	<updated>2008-07-24T11:07:04Z</updated>
	<author>
		<name>hubbs-2</name>
	</author>
	<content type="html">&lt;br&gt;Thanks Ariel,
&lt;br&gt;&lt;br&gt;My situation is, I have a list of links. &amp;nbsp;When I click a link, I need
&lt;br&gt;the input box to appear, which is where I will enter the number. &amp;nbsp;When
&lt;br&gt;I enter a number, say, 5, I need the URL for that link to be put into
&lt;br&gt;an array, but 5 times, or 5 items in the array. &amp;nbsp;So each time, the
&lt;br&gt;user with specify how many times the URL will be put into the array.
&lt;br&gt;&lt;br&gt;Sounds strange, but there is a purpose for this.
&lt;br&gt;&lt;br&gt;On Jul 24, 7:51 am, Ariel Flesler &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18637470&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;afles...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; You need to modify the text of the input and it will &amp;quot;resize&amp;quot; the
&lt;br&gt;&amp;gt; array to that limit.
&lt;br&gt;&amp;gt; I didn't know exactly when to modify the size, you need to change that
&lt;br&gt;&amp;gt; to suit your needs.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The change event is triggered after you modify the text of the input
&lt;br&gt;&amp;gt; and you remove the focus from it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Am I getting your situation wrongly ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Ariel Fleslerhttp://flesler.blogspot.com/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 24 jul, 02:12, hubbs &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18637470&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nnhubb...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; The values for the array are just random text, I will replace them
&lt;br&gt;&amp;gt; &amp;gt; later.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Ariel, I am checking vals with an alert, and it is returning the whole
&lt;br&gt;&amp;gt; &amp;gt; array, did I do something wrong?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On Jul 23, 6:54 pm, Ariel Flesler &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18637470&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;afles...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Maybe something like:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; var full = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g' ];
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; var vals = full;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; $('input.happy').change(function(){
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;    var amount = parseInt(this.value);
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;    if( !isNaN(amount ) )
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt;       vals = full.slice( 0, amount );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; full contains all the possible values, vals has only as many as the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; user selected.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Cheers
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; Ariel Fleslerhttp://flesler.blogspot.com/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; On 23 jul, 21:38, &amp;quot;Michael Geary&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18637470&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;m...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I don't think you *would* do this with jQuery, other than the trivial part
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; of fetching the value from the input box. It's just JavaScript.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; The answer is, of course, yes, you can create an array where the number of
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; elements depend on some defined value.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; But where do you get the values for the array elements? Where do &amp;quot;Jani&amp;quot; et
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; al come from?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; There's not quite enough information here to answer the question.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; -Mike
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; I am wondering if it is possible to create an array, but the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; number of array items would depend on the number value in an
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; input box.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; So, if the user entered 5, it would create:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; var arr = new Array(6);
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[0] = &amp;quot;Jani&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[1] = &amp;quot;Hege&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[2] = &amp;quot;Stale&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[3] = &amp;quot;Kai Jim&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[4] = &amp;quot;Borge&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[5] = &amp;quot;Tove&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; &amp;gt; I am having a hard time understanding how I would do this with jQuery.- Ocultar texto de la cita -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; - Mostrar texto de la cita -- Ocultar texto de la cita -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; - Mostrar texto de la cita -
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Create-array-based-on-input-value-tp18621480s27240p18637470.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18637194</id>
	<title>file uploads with progress bars</title>
	<published>2008-07-24T10:53:09Z</published>
	<updated>2008-07-24T10:53:09Z</updated>
	<author>
		<name>laredotornado@zipmail.com</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Does anyone know of a JQuery plug-in that can do the following,
&lt;br&gt;perhaps unreasonable, list of things
&lt;br&gt;&lt;br&gt;- AJAX file uploads
&lt;br&gt;- Progress bar while upload is happening
&lt;br&gt;- ability to catch server response and display a message instead of
&lt;br&gt;page refreshing
&lt;br&gt;- cancel the AJAX request mid-stream
&lt;br&gt;&lt;br&gt;You guys are the best as always, - Dave
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/file-uploads-with-progress-bars-tp18637194s27240p18637194.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636640</id>
	<title>Re: Write binary data (from server) is possible with Ajax?</title>
	<published>2008-07-24T10:22:22Z</published>
	<updated>2008-07-24T10:22:22Z</updated>
	<author>
		<name>mjack003</name>
	</author>
	<content type="html">In Short: You CAN...just not using the current JQuery version.
&lt;br&gt;&lt;br&gt;It is possible with &lt;b&gt;Firefox&lt;/b&gt;&amp;nbsp;to download binary data using the xmlHttpRequest object. &amp;nbsp;Please read the following link:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a href=&quot;http://mgran.blogspot.com/2006/08/downloading-binary-streams-with.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://mgran.blogspot.com/2006/08/downloading-binary-streams-with.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Pretty impressive stuff. &amp;nbsp;Would be nice if JQuery would implement this into the ajax functionality and return binary streams so multiple libraries would not be needed.
&lt;br&gt;&lt;br&gt;Regards,
&lt;br&gt;Mjack
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Mario Wolff-2 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi!
&lt;br&gt;In short: You can't!
&lt;br&gt;A possible way:
&lt;br&gt;Do a HEAD request first, check the content-type as you do, if it's
&lt;br&gt;&amp;quot;usable&amp;quot; data load it with a GET request, if it's &amp;quot;downloadable&amp;quot; data
&lt;br&gt;open the same url in a new window. The browser will see that it is an
&lt;br&gt;oktet-stream and will open download dialog!
&lt;br&gt;Regards,
&lt;br&gt;Mario
&lt;br&gt;&lt;br&gt;PS: My english is also pure! 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Write-binary-data-%28from-server%29-is-possible-with-Ajax--tp18131651s27240p18636640.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636486</id>
	<title>Re: Simple/obvious way to reveal items clipped by overflow:hidden ?</title>
	<published>2008-07-24T10:11:37Z</published>
	<updated>2008-07-24T10:11:37Z</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 Su,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;One way you could do it is to make sure that the contents of the div are contained within another div. Something like this:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;div id=&quot;outer&quot;&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;h3&gt;Heading&amp;lt;/h3&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;p&gt;paragraph&amp;lt;/p&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;p&gt;another paragraph&amp;lt;/p&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;		&lt;/span&gt;&amp;lt;!-- more stuff here --&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;div&gt;Then you could animate the outer div to the inner div's height:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;$(document).ready(function() {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;var initHeight = $('#outer').height();&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;$('#outer').hover(function() {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(this).animate({height: $('&gt; div', this).height()}, 400);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;}, function() {&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;$(this).animate({height: initHeight}, 400);&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;});&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp;});&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;You don't have to animate it, of course, but I thought that would look cool. :-)&lt;/div&gt;&lt;/div&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&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 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 24, 2008, at 12:22 PM, Su 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;Let's say I have a div with a CSS height of 200px, with&lt;br&gt;overflow:hidden, and so there's content clipped inside it.&lt;br&gt;Is there any way to have .hover() make that div expand down to reveal&lt;br&gt;the internal content, without having to manually specify the target&lt;br&gt;height?&lt;br&gt;&lt;br&gt;Since overflow:auto produces proportional scrollbars, I have the&lt;br&gt;impression that the browser /does/ know this number somehow, but I&lt;br&gt;have no idea how to get at it.&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Simple-obvious-way-to-reveal-items-clipped-by-overflow%3Ahidden---tp18635492s27240p18636486.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636242</id>
	<title>Re: need some documentation mirror or something</title>
	<published>2008-07-24T09:58:13Z</published>
	<updated>2008-07-24T09:58:13Z</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;Sorry about the inconvenience with the docs site. I know John was looking into the problem a few days ago, but he's traveling a lot at the moment so not sure how much progress has been made or how soon he'll be able to return to it. In the meantime, Remy Sharp's API viewer is very handy:&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;a href=&quot;http://remysharp.com/jquery-api/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://remysharp.com/jquery-api/&lt;/a&gt;&lt;br&gt;&lt;div&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 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;www.englishrules.com&lt;/div&gt;&lt;div&gt;www.learningjquery.com&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 24, 2008, at 11:10 AM, AstroIvan 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;docs.jquery.com is way too unstable to be useful. &amp;nbsp;can we get the&lt;br&gt;documentation grouped into a downloaded file as well? &amp;nbsp;i'd submit a&lt;br&gt;bug but i can't get to the nav.&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/need-some-documentation-mirror-or-something-tp18635028s27240p18636242.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636272</id>
	<title>Re: slideToggle() very jerky</title>
	<published>2008-07-24T09:55:15Z</published>
	<updated>2008-07-24T09:55:15Z</updated>
	<author>
		<name>Todd Davis-2</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Thanks. I had seen similar posts to that (after I asked the question) and tried it, but that presented two problems. First, it was still jerky. Second, the second table row didn&amp;#39;t close all the way because of the padding issue. But thank you for trying. Let me know if you have any other ideas...&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Jul 24, 2008 at 11:51 AM, Karl Swedberg &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18636272&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;karl@...&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 style=&quot;WORD-WRAP: break-word&quot;&gt;It might help to take the margin off of the sliding div and put padding on the containing td instead.&lt;br&gt;
&lt;div&gt;&lt;span style=&quot;WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate&quot;&gt;&lt;span style=&quot;WORD-SPACING: 0px; FONT: 12px Helvetica; TEXT-TRANSFORM: none; COLOR: rgb(0,0,0); TEXT-INDENT: 0px; WHITE-SPACE: normal; LETTER-SPACING: normal; BORDER-COLLAPSE: separate&quot;&gt;
&lt;div&gt;&lt;br&gt;--Karl&lt;br&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;_blank&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;_blank&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&gt;&lt;/span&gt;&lt;br&gt;&lt;/div&gt;
&lt;div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div class=&quot;Wj3C7c&quot;&gt;&lt;br&gt;
&lt;div&gt;
&lt;div&gt;On Jul 24, 2008, at 9:59 AM, toddhd wrote:&lt;/div&gt;&lt;br&gt;
&lt;blockquote type=&quot;cite&quot;&gt;
&lt;div&gt;&lt;br&gt;Hello - I am very new to jquery, so maybe I&amp;#39;m doing something wrong. I&lt;br&gt;am trying to create a pretty simple expanding container. This is&lt;br&gt;standard fare, with a title bar, and when you click on the +/- it&lt;br&gt;
should expand/collapse the contents of the container. Functionally,&lt;br&gt;the code below is working just fine. My concern is that the movement&lt;br&gt;(in both IE and FF) is jerky. To be more specific, the rollup looks&lt;br&gt;pretty good, but when it expands again, there is a hesitation - it is&lt;br&gt;
not smooth.&lt;br&gt;&lt;br&gt;Am I doing something wrong? Or is this a known issue?&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://&lt;br&gt;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;&lt;br&gt;
&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;head&amp;gt;&lt;br&gt;&amp;lt;meta content=&amp;quot;text/html; charset=utf-8&amp;quot; http-equiv=&amp;quot;Content-Type&amp;quot; /&amp;gt;&lt;br&gt;
&amp;lt;script src=&amp;quot;javascript/jquery-1.2.6.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/&lt;br&gt;script&amp;gt;&lt;br&gt;&amp;lt;/head&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;body&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;table cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border: 1px black solid;&lt;br&gt;
width: 300px;&amp;quot;&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;tr&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;td style=&amp;quot;background-color: navy; color: white; font-weight: bold;&lt;br&gt;
padding: 5px;&amp;quot;&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;a href=&amp;quot;#&amp;quot; onclick=&amp;quot;$(&amp;#39;#slide&amp;#39;).slideToggle(&amp;#39;slow&amp;#39;);&amp;quot;&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;img alt=&amp;quot;Expand/Collapse&amp;quot; src=&amp;quot;images/Minus.gif&amp;quot; style=&amp;quot;margin-&lt;br&gt;
right: 10px; border-style: none;&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;Title&amp;lt;/td&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;/tr&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;tr&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;td style=&amp;quot;background-color: gray;&amp;quot;&amp;gt;&lt;br&gt;
&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;div id=&amp;quot;slide&amp;quot; style=&amp;quot;width: 100%; padding: 0px; margin: 5px;&amp;quot;&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;Vestibulum accumsan imperdiet pede. Donec est sapien, facilisis a,&lt;br&gt;
pretium&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;nec, vehicula in, sapien. Donec luctus. In tincidunt, sem in&lt;br&gt;dapibus&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;adipiscing, pede leo euismod ligula, eget mattis est orci ut&lt;br&gt;
lectus.&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;Proin ligula. Donec fringilla volutpat nisl. Nam a lacus non orci&lt;br&gt;vehicula&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;semper. Nam iaculis, lacus nec auctor tincidunt, velit ipsum&lt;br&gt;
iaculis&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;elit, eget semper nibh sapien non justo. Cras tellus turpis,&lt;br&gt;iaculis&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;sit amet, tempor nec, rhoncus vitae, purus. Sed pharetra commodo&lt;br&gt;
orci.&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;Fusce auctor tincidunt nulla. Pellentesque habitant morbi&lt;br&gt;tristique&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;senectus et netus et malesuada fames ac turpis egestas. Vivamus&lt;br&gt;
tempus&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;fermentum nunc. Cras rhoncus sapien vel felis. Duis elit enim,&lt;br&gt;vulputate&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;in, eleifend a, tempor quis, lacus. Etiam volutpat, felis vitae&lt;br&gt;
hendrerit&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;pharetra, eros urna pulvinar nibh, et ultricies neque augue nec&lt;br&gt;dui.&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;Phasellus non tellus. Phasellus faucibus lectus nec augue.&lt;br&gt;
Praesent&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;vulputate. Nam leo neque, consectetuer non, aliquet at, accumsan&lt;br&gt;vitae,&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;sapien. &amp;lt;/div&amp;gt;&lt;br&gt;
&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;/td&amp;gt;&lt;br&gt;&lt;span style=&quot;WHITE-SPACE: pre&quot;&gt;&lt;/span&gt;&amp;lt;/tr&amp;gt;&lt;br&gt;&amp;lt;/table&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;/body&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;/html&amp;gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;
&lt;/div&gt;&lt;br&gt;&lt;/div&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;-Todd Davis&lt;br&gt;&lt;a href=&quot;http://www.SeaburyDesign.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.SeaburyDesign.com&lt;/a&gt; &lt;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/slideToggle%28%29-very-jerky-tp18634845s27240p18636272.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636274</id>
	<title>Re: An event from the ajax result</title>
	<published>2008-07-24T09:53:48Z</published>
	<updated>2008-07-24T09:53:48Z</updated>
	<author>
		<name>Sridhar-15</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&amp;nbsp;I am not sure if I understand ur question. are you getting any errors
&lt;br&gt;when run this or are you asking where to insert the $(&amp;quot;.abc&amp;quot;).click
&lt;br&gt;function?
&lt;br&gt;&lt;br&gt;you will normally include &amp;nbsp;$(&amp;quot;.abc&amp;quot;).click &amp;nbsp;function inside $
&lt;br&gt;(document).ready() function like this
&lt;br&gt;&lt;br&gt;&amp;lt;script language=javascript&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(document).ready(function(){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;.abc&amp;quot;).click(function() {
&lt;br&gt;$.ajax({
&lt;br&gt;url: &amp;quot;url.php&amp;quot;,
&lt;br&gt;method: &amp;quot;post&amp;quot;,
&lt;br&gt;data: &amp;quot;data1=1&amp;quot;,
&lt;br&gt;success: function(m) {
&lt;br&gt;$(&amp;quot;.parent_div&amp;quot;).append(m);
&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;&amp;lt;/script&amp;gt;
&lt;br&gt;&lt;br&gt;On Jul 24, 9:46 am, &amp;quot;Didats Triadi&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18636274&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;did...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm quite new in JQuery and this mailing list. And want to ask
&lt;br&gt;&amp;gt; something that I couldn't get the answer yet.
&lt;br&gt;&amp;gt; I hope someone can help me.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have this HTML link:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;abc&amp;quot;&amp;gt;the link&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And this JQuery.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $(&amp;quot;.abc&amp;quot;).click(function() {
&lt;br&gt;&amp;gt; $.ajax({
&lt;br&gt;&amp;gt; url: &amp;quot;url.php&amp;quot;,
&lt;br&gt;&amp;gt; method: &amp;quot;post&amp;quot;,
&lt;br&gt;&amp;gt; data: &amp;quot;data1=1&amp;quot;,
&lt;br&gt;&amp;gt; success: function(m) {
&lt;br&gt;&amp;gt; $(&amp;quot;.parent_div&amp;quot;).append(m);
&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;
&lt;br&gt;&amp;gt; The Ajax process will result this (the m variable):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;.abc&amp;quot;&amp;gt;link 1&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The question is, how can I make the $(&amp;quot;.abc&amp;quot;).click() above, working
&lt;br&gt;&amp;gt; on the HTML ajax result?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance.
&lt;br&gt;&amp;gt; Didats Triadi
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/An-event-from-the-ajax-result-tp18635030s27240p18636274.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636270</id>
	<title>Re: An event from the ajax result</title>
	<published>2008-07-24T09:52:43Z</published>
	<updated>2008-07-24T09:52:43Z</updated>
	<author>
		<name>mmiller-3</name>
	</author>
	<content type="html">&lt;br&gt;This is a common question.
&lt;br&gt;&lt;br&gt;As soon as you have appended your latest element to the DOM, you could
&lt;br&gt;select it and bind a click handler to it (right inside the success
&lt;br&gt;function).
&lt;br&gt;&lt;br&gt;See: &lt;a href=&quot;http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F&lt;/a&gt;&lt;br&gt;&lt;br&gt;Also consider: &lt;a href=&quot;http://brandonaaron.net/docs/livequery/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://brandonaaron.net/docs/livequery/&lt;/a&gt;&lt;br&gt;&lt;br&gt;Mark
&lt;br&gt;&lt;br&gt;On Jul 24, 7:46 am, &amp;quot;Didats Triadi&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18636270&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;did...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Hi All,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm quite new in JQuery and this mailing list. And want to ask
&lt;br&gt;&amp;gt; something that I couldn't get the answer yet.
&lt;br&gt;&amp;gt; I hope someone can help me.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I have this HTML link:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;abc&amp;quot;&amp;gt;the link&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; And this JQuery.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $(&amp;quot;.abc&amp;quot;).click(function() {
&lt;br&gt;&amp;gt; $.ajax({
&lt;br&gt;&amp;gt; url: &amp;quot;url.php&amp;quot;,
&lt;br&gt;&amp;gt; method: &amp;quot;post&amp;quot;,
&lt;br&gt;&amp;gt; data: &amp;quot;data1=1&amp;quot;,
&lt;br&gt;&amp;gt; success: function(m) {
&lt;br&gt;&amp;gt; $(&amp;quot;.parent_div&amp;quot;).append(m);
&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;
&lt;br&gt;&amp;gt; The Ajax process will result this (the m variable):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;.abc&amp;quot;&amp;gt;link 1&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The question is, how can I make the $(&amp;quot;.abc&amp;quot;).click() above, working
&lt;br&gt;&amp;gt; on the HTML ajax result?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks in advance.
&lt;br&gt;&amp;gt; Didats Triadi
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/An-event-from-the-ajax-result-tp18635030s27240p18636270.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18636054</id>
	<title>Re: slideToggle() very jerky</title>
	<published>2008-07-24T09:51:03Z</published>
	<updated>2008-07-24T09:51:03Z</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;It might help to take the margin off of the sliding div and put padding on the containing td instead.&lt;br&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 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 24, 2008, at 9:59 AM, toddhd 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;Hello - I am very new to jquery, so maybe I'm doing something wrong. I&lt;br&gt;am trying to create a pretty simple expanding container. This is&lt;br&gt;standard fare, with a title bar, and when you click on the +/- it&lt;br&gt;should expand/collapse the contents of the container. Functionally,&lt;br&gt;the code below is working just fine. My concern is that the movement&lt;br&gt;(in both IE and FF) is jerky. To be more specific, the rollup looks&lt;br&gt;pretty good, but when it expands again, there is a hesitation - it is&lt;br&gt;not smooth.&lt;br&gt;&lt;br&gt;Am I doing something wrong? Or is this a known issue?&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;http://&lt;br&gt;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&quot;&gt;&lt;br&gt;&amp;lt;html xmlns=&quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&quot;&gt;&lt;br&gt;&lt;br&gt;&amp;lt;head&gt;&lt;br&gt;&amp;lt;meta content=&quot;text/html; charset=utf-8&quot; http-equiv=&quot;Content-Type&quot; /&gt;&lt;br&gt;&amp;lt;script src=&quot;javascript/jquery-1.2.6.min.js&quot; type=&quot;text/javascript&quot;&gt;&amp;lt;/&lt;br&gt;script&gt;&lt;br&gt;&amp;lt;/head&gt;&lt;br&gt;&lt;br&gt;&amp;lt;body&gt;&lt;br&gt;&lt;br&gt;&amp;lt;table cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; style=&quot;border: 1px black solid;&lt;br&gt;width: 300px;&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;tr&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;td style=&quot;background-color: navy; color: white; font-weight: bold;&lt;br&gt;padding: 5px;&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;a href=&quot;#&quot; onclick=&quot;$('#slide').slideToggle('slow');&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;img alt=&quot;Expand/Collapse&quot; src=&quot;images/Minus.gif&quot; style=&quot;margin-&lt;br&gt;right: 10px; border-style: none;&quot; /&gt;&amp;lt;/a&gt;Title&amp;lt;/td&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/tr&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;tr&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;td style=&quot;background-color: gray;&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;div id=&quot;slide&quot; style=&quot;width: 100%; padding: 0px; margin: 5px;&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Vestibulum accumsan imperdiet pede. Donec est sapien, facilisis a,&lt;br&gt;pretium&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;nec, vehicula in, sapien. Donec luctus. In tincidunt, sem in&lt;br&gt;dapibus&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;adipiscing, pede leo euismod ligula, eget mattis est orci ut&lt;br&gt;lectus.&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Proin ligula. Donec fringilla volutpat nisl. Nam a lacus non orci&lt;br&gt;vehicula&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;semper. Nam iaculis, lacus nec auctor tincidunt, velit ipsum&lt;br&gt;iaculis&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;elit, eget semper nibh sapien non justo. Cras tellus turpis,&lt;br&gt;iaculis&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;sit amet, tempor nec, rhoncus vitae, purus. Sed pharetra commodo&lt;br&gt;orci.&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Fusce auctor tincidunt nulla. Pellentesque habitant morbi&lt;br&gt;tristique&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;senectus et netus et malesuada fames ac turpis egestas. Vivamus&lt;br&gt;tempus&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;fermentum nunc. Cras rhoncus sapien vel felis. Duis elit enim,&lt;br&gt;vulputate&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;in, eleifend a, tempor quis, lacus. Etiam volutpat, felis vitae&lt;br&gt;hendrerit&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;pharetra, eros urna pulvinar nibh, et ultricies neque augue nec&lt;br&gt;dui.&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;Phasellus non tellus. Phasellus faucibus lectus nec augue.&lt;br&gt;Praesent&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;vulputate. Nam leo neque, consectetuer non, aliquet at, accumsan&lt;br&gt;vitae,&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;sapien. &amp;lt;/div&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/td&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/tr&gt;&lt;br&gt;&amp;lt;/table&gt;&lt;br&gt;&lt;br&gt;&amp;lt;/body&gt;&lt;br&gt;&lt;br&gt;&amp;lt;/html&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/slideToggle%28%29-very-jerky-tp18634845s27240p18636054.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635492</id>
	<title>Simple/obvious way to reveal items clipped by overflow:hidden ?</title>
	<published>2008-07-24T09:22:33Z</published>
	<updated>2008-07-24T09:22:33Z</updated>
	<author>
		<name>Su-5</name>
	</author>
	<content type="html">&lt;br&gt;Let's say I have a div with a CSS height of 200px, with
&lt;br&gt;overflow:hidden, and so there's content clipped inside it.
&lt;br&gt;Is there any way to have .hover() make that div expand down to reveal
&lt;br&gt;the internal content, without having to manually specify the target
&lt;br&gt;height?
&lt;br&gt;&lt;br&gt;Since overflow:auto produces proportional scrollbars, I have the
&lt;br&gt;impression that the browser /does/ know this number somehow, but I
&lt;br&gt;have no idea how to get at it.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Simple-obvious-way-to-reveal-items-clipped-by-overflow%3Ahidden---tp18635492s27240p18635492.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635415</id>
	<title>IE Problem, throws no error dont know what its doing.</title>
	<published>2008-07-24T09:09:57Z</published>
	<updated>2008-07-24T09:09:57Z</updated>
	<author>
		<name>admin.liveanime@googlemail.com</name>
	</author>
	<content type="html">&lt;br&gt;I have a small multi-part form (full version at &lt;a href=&quot;http://liveanime.org/manga/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveanime.org/manga/&lt;/a&gt;&lt;br&gt;click the upload manga link&amp;quot;) it works in everything but IE (as usual.
&lt;br&gt;none of them 6,7,8) And none of them are giving me an error they are
&lt;br&gt;just refusing to work.
&lt;br&gt;&lt;br&gt;I have trimmed down the code to try and work out where the error is
&lt;br&gt;and its not getting past the ajax post of information to the php file
&lt;br&gt;which validates the form. As far as i can tell. I cant work out where
&lt;br&gt;the error is.
&lt;br&gt;&lt;br&gt;Trimmed down version is here = &lt;a href=&quot;http://liveanime.org/manga/test.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://liveanime.org/manga/test.html&lt;/a&gt;&lt;br&gt;click the CHECK THESE DETAILS link, no need to do anything else. In
&lt;br&gt;everything but ie it will come back saying, fill this in etc.
&lt;br&gt;&lt;br&gt;Thanks in advanced.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE-Problem%2C-throws-no-error-dont-know-what-its-doing.-tp18635415s27240p18635415.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635164</id>
	<title>Re: more jQuerish-way instead of each -&gt; accesing &quot;this&quot; or &quot;self&quot; or &quot;currently mangeld object&quot;</title>
	<published>2008-07-24T09:06:42Z</published>
	<updated>2008-07-24T09:06:42Z</updated>
	<author>
		<name>Jörn Zaefferer-2</name>
	</author>
	<content type="html">&lt;br&gt;Your solution is already as good as it gets.
&lt;br&gt;&lt;br&gt;Jörn
&lt;br&gt;&lt;br&gt;On Thu, Jul 24, 2008 at 2:11 PM, Harald Armin Massa
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18635164&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;haraldarminmassa@...&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 need to add autocomplete-functionality to some of my input fields.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I can select them via $j(&amp;quot;input.acmplajax&amp;quot;) -&amp;gt; done
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The URL for requesting the autocomplete-Filler needs to be different
&lt;br&gt;&amp;gt; for every input, so I want to refer to the DOM-ID of that input-
&lt;br&gt;&amp;gt; element, the following works:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $j(&amp;quot;input.acmplajax&amp;quot;).each(
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; function(ind, obj)
&lt;br&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; {$j(obj).autocomplete(&amp;quot;/autocont/&amp;quot;+obj.id)
&lt;br&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;}
&lt;br&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;
&lt;br&gt;&amp;gt; But my stomach tells me: there must be some way to write this
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; $j(&amp;quot;input.acmplajax&amp;quot;).autocomplete(&amp;quot;/autocont/&amp;quot;+&amp;lt;how_do_I_access the
&lt;br&gt;&amp;gt; current element of the jQuery collection&amp;gt;.id)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; so, what is the correct value for &amp;quot;&amp;lt;how_do_I_access the current
&lt;br&gt;&amp;gt; element of the jQuery collection&amp;gt;&amp;quot; ???
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Harald
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/more-jQuerish-way-instead-of-each--%3E-accesing-%22this%22-or-%22self%22-or--%22currently-mangeld-object%22-tp18632576s27240p18635164.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635240</id>
	<title>slow jQuery functionality in IE on Windows</title>
	<published>2008-07-24T08:52:26Z</published>
	<updated>2008-07-24T08:52:26Z</updated>
	<author>
		<name>jasonheidecker@gmail.com</name>
	</author>
	<content type="html">&lt;br&gt;My page:
&lt;br&gt;&lt;a href=&quot;http://dev.theredgroup.us/greenside&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dev.theredgroup.us/greenside&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please mouseover six graphic 'tiles' on righthand side. &amp;nbsp;Content below
&lt;br&gt;changes as well as tile color changes.
&lt;br&gt;&lt;br&gt;Problem:
&lt;br&gt;IE on Windows has very slow performance, with lag between mouseover of
&lt;br&gt;images leading to slow change from gray to color.
&lt;br&gt;&lt;br&gt;Firefox Mac/Win and Mac Safari does not show this. &amp;nbsp;I have not tried
&lt;br&gt;Mac IE.
&lt;br&gt;&lt;br&gt;Any thoughts?
&lt;br&gt;&lt;br&gt;The jQuery code that controls this content:
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tiles a&amp;quot;).mouseover(function(){
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // get tile filename
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var newsrc = $(this).children(&amp;quot;img&amp;quot;).attr(&amp;quot;src&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // change all tiles to gray
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#tiles a img&amp;quot;).each(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; var newsrc2 = $(this).attr(&amp;quot;src&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; $(this).attr(&amp;quot;src&amp;quot;, &amp;quot;images/tiles/&amp;quot;+newsrc2.substr(13,5)+&amp;quot;-
&lt;br&gt;gray.gif&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // change this tile to color
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(this).children(&amp;quot;img&amp;quot;).attr(&amp;quot;src&amp;quot;, &amp;quot;images/
&lt;br&gt;tiles/&amp;quot;+newsrc.substr(13,5)+&amp;quot;-color.gif&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // change text content
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(&amp;quot;#hpcopy div&amp;quot;).css(&amp;quot;display&amp;quot;,&amp;quot;none&amp;quot;).appendTo(&amp;quot;#holding&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $
&lt;br&gt;(&amp;quot;#&amp;quot;+newsrc.substr(13,5)).css(&amp;quot;display&amp;quot;,&amp;quot;inline&amp;quot;).appendTo(&amp;quot;#hpcopy&amp;quot;);
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;thanks!
&lt;br&gt;&lt;br&gt;Jason
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/slow-jQuery-functionality-in-IE-on-Windows-tp18635240s27240p18635240.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634890</id>
	<title>Re: Augmentation of Object.prototype</title>
	<published>2008-07-24T08:33:22Z</published>
	<updated>2008-07-24T08:33:22Z</updated>
	<author>
		<name>Greg Burri-2</name>
	</author>
	<content type="html">&lt;br&gt;This snippet of code means &amp;quot;iterate over all members of myObj AND all
&lt;br&gt;members of the prototypes in its chain&amp;quot; :
&lt;br&gt;&lt;br&gt;for (var m in myObj) {
&lt;br&gt;&amp;nbsp; &amp;nbsp;// use of m...
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;In JQuery the most (all?) of &amp;quot;for (.. in ..)&amp;quot; construction means
&lt;br&gt;&amp;quot;iterate over all members of myObj&amp;quot;.
&lt;br&gt;You expect that the object.prototype is empty... but it's not always
&lt;br&gt;true :).
&lt;br&gt;&lt;br&gt;If i have time I will try to use an &amp;quot;each&amp;quot; instead of the &amp;quot;for in&amp;quot; in
&lt;br&gt;jQuery and take some performance measures.
&lt;br&gt;&lt;br&gt;&lt;br&gt;/Greg
&lt;br&gt;&lt;br&gt;On Jul 22, 7:23 pm, &amp;quot;Michael Geary&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18634890&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; &amp;gt; If it's so BAD why Douglas Crockford in his book[1] has no
&lt;br&gt;&amp;gt; &amp;gt; problem with object.prototype augmentation ?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; For example, take a look :
&lt;br&gt;&amp;gt; &amp;gt;&lt;a href=&quot;http://javascript.crockford.com/prototypal.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://javascript.crockford.com/prototypal.html&lt;/a&gt;&lt;br&gt;&amp;gt; &amp;gt; He says : &amp;quot;The problem with Object.prototype.begetObject is
&lt;br&gt;&amp;gt; &amp;gt; that it trips up incompetent programs[..]&amp;quot;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; [1]&lt;a href=&quot;http://oreilly.com/catalog/9780596517748/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://oreilly.com/catalog/9780596517748/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Doug's a very smart guy, and a world-class JavaScript expert. However, there
&lt;br&gt;&amp;gt; are a few things like this where he's not really looking at all the
&lt;br&gt;&amp;gt; tradeoffs. (That's a polite way of saying &amp;quot;he's wrong!&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On this particular issue, Doug wishes JavaScript had a feature it doesn't
&lt;br&gt;&amp;gt; have - the ability to add non-enumerable properties to an object or its
&lt;br&gt;&amp;gt; prototype. So, he's willing to push the burden of dealing with this
&lt;br&gt;&amp;gt; limitation onto every for..in loop in existence. That means you can never
&lt;br&gt;&amp;gt; write a clean and simple for..in loop again: instead, you have to use (ugh!)
&lt;br&gt;&amp;gt; a Design Pattern.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Consider Doug's JSON library, which until recently extended
&lt;br&gt;&amp;gt; Object.prototype, and as a result all sorts of code around the world broke
&lt;br&gt;&amp;gt; in odd ways. Not just jQuery, but anyone who innocently used a for..in loop
&lt;br&gt;&amp;gt; and expected it to work as advertised.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The newest version of Doug's JSON library no longer extends
&lt;br&gt;&amp;gt; Object.prototype.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -Mike
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Augmentation-of-Object.prototype-tp18587934s27240p18634890.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634089</id>
	<title>jqModal gallery slideshow</title>
	<published>2008-07-24T08:16:38Z</published>
	<updated>2008-07-24T08:16:38Z</updated>
	<author>
		<name>Erin Doak-2</name>
	</author>
	<content type="html">&lt;br&gt;Anyone ever made a gallery slideshow with jqModal? Can anyone 
&lt;br&gt;recommend a good place to start? Code?
&lt;br&gt;&lt;br&gt;Erin
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/jqModal-gallery-slideshow-tp18634089s27240p18634089.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635682</id>
	<title>Re: jQuery Validation Opera Issue</title>
	<published>2008-07-24T08:15:38Z</published>
	<updated>2008-07-24T08:15:38Z</updated>
	<author>
		<name>Steve W-4</name>
	</author>
	<content type="html">&lt;br&gt;I get a similar issue with a textarea but mine actually does have
&lt;br&gt;validation rules of required and minlength. Mine shows the proper
&lt;br&gt;required error when there's nothing there but once I start adding text
&lt;br&gt;to it I get an error that's the same name/id as the field
&lt;br&gt;(areaHearAbout). Also only happening to me in Opera 9.26. Tried the
&lt;br&gt;latest release 1.3 and 1.4 and getting the same error as well.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/jQuery-Validation-Opera-Issue-tp18466775s27240p18635682.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634024</id>
	<title>Re: How to cancel an ajax request?</title>
	<published>2008-07-24T08:14:08Z</published>
	<updated>2008-07-24T08:14:08Z</updated>
	<author>
		<name>Ariel Flesler</name>
	</author>
	<content type="html">&lt;br&gt;This should do:
&lt;br&gt;&lt;br&gt;var xhr = $.ajax({....});
&lt;br&gt;//...
&lt;br&gt;xhr.abort();
&lt;br&gt;&lt;br&gt;There small issues with this, they were fixed on trunk but I don't
&lt;br&gt;think they made it to 1.2.6.
&lt;br&gt;In short, this is how.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Ariel Flesler
&lt;br&gt;&lt;a href=&quot;http://flesler.blogspot.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://flesler.blogspot.com&lt;/a&gt;&lt;br&gt;&lt;br&gt;On 24 jul, 12:10, &amp;quot;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18634024&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;laredotorn...@...&lt;/a&gt;&amp;quot;
&lt;br&gt;&amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18634024&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;laredotorn...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Hi,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Not sure if this is possible but wanted to float this out there.  Is
&lt;br&gt;&amp;gt; there a way to cancel an AJAX request once the ball is set in motion?
&lt;br&gt;&amp;gt; I'm using the &amp;quot;$.ajax&amp;quot; call, not sure if there are parameters I can
&lt;br&gt;&amp;gt; pass or things I can catch that would help me cancel the request at
&lt;br&gt;&amp;gt; some later point.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks for your input, - Dave
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-cancel-an-ajax-request--tp18633944s27240p18634024.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635028</id>
	<title>need some documentation mirror or something</title>
	<published>2008-07-24T08:10:29Z</published>
	<updated>2008-07-24T08:10:29Z</updated>
	<author>
		<name>AstroIvan</name>
	</author>
	<content type="html">&lt;br&gt;docs.jquery.com is way too unstable to be useful. &amp;nbsp;can we get the
&lt;br&gt;documentation grouped into a downloaded file as well? &amp;nbsp;i'd submit a
&lt;br&gt;bug but i can't get to the nav.
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/need-some-documentation-mirror-or-something-tp18635028s27240p18635028.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18633944</id>
	<title>How to cancel an ajax request?</title>
	<published>2008-07-24T08:10:25Z</published>
	<updated>2008-07-24T08:10:25Z</updated>
	<author>
		<name>laredotornado@zipmail.com</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;Not sure if this is possible but wanted to float this out there. &amp;nbsp;Is
&lt;br&gt;there a way to cancel an AJAX request once the ball is set in motion?
&lt;br&gt;I'm using the &amp;quot;$.ajax&amp;quot; call, not sure if there are parameters I can
&lt;br&gt;pass or things I can catch that would help me cancel the request at
&lt;br&gt;some later point.
&lt;br&gt;&lt;br&gt;Thanks for your input, - Dave
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/How-to-cancel-an-ajax-request--tp18633944s27240p18633944.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18633530</id>
	<title>Re: Create array based on input value</title>
	<published>2008-07-24T07:51:25Z</published>
	<updated>2008-07-24T07:51:25Z</updated>
	<author>
		<name>Ariel Flesler</name>
	</author>
	<content type="html">&lt;br&gt;You need to modify the text of the input and it will &amp;quot;resize&amp;quot; the
&lt;br&gt;array to that limit.
&lt;br&gt;I didn't know exactly when to modify the size, you need to change that
&lt;br&gt;to suit your needs.
&lt;br&gt;&lt;br&gt;The change event is triggered after you modify the text of the input
&lt;br&gt;and you remove the focus from it.
&lt;br&gt;&lt;br&gt;Am I getting your situation wrongly ?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Ariel Flesler
&lt;br&gt;&lt;a href=&quot;http://flesler.blogspot.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://flesler.blogspot.com/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 24 jul, 02:12, hubbs &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18633530&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;nnhubb...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The values for the array are just random text, I will replace them
&lt;br&gt;&amp;gt; later.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Ariel, I am checking vals with an alert, and it is returning the whole
&lt;br&gt;&amp;gt; array, did I do something wrong?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Jul 23, 6:54 pm, Ariel Flesler &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18633530&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;afles...@...&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; Maybe something like:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; var full = [ 'a', 'b', 'c', 'd', 'e', 'f', 'g' ];
&lt;br&gt;&amp;gt; &amp;gt; var vals = full;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; $('input.happy').change(function(){
&lt;br&gt;&amp;gt; &amp;gt;    var amount = parseInt(this.value);
&lt;br&gt;&amp;gt; &amp;gt;    if( !isNaN(amount ) )
&lt;br&gt;&amp;gt; &amp;gt;       vals = full.slice( 0, amount );
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; full contains all the possible values, vals has only as many as the
&lt;br&gt;&amp;gt; &amp;gt; user selected.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Cheers
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; --
&lt;br&gt;&amp;gt; &amp;gt; Ariel Fleslerhttp://flesler.blogspot.com/
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; On 23 jul, 21:38, &amp;quot;Michael Geary&amp;quot; &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18633530&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;m...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; I don't think you *would* do this with jQuery, other than the trivial part
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; of fetching the value from the input box. It's just JavaScript.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; The answer is, of course, yes, you can create an array where the number of
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; elements depend on some defined value.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; But where do you get the values for the array elements? Where do &amp;quot;Jani&amp;quot; et
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; al come from?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; There's not quite enough information here to answer the question.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; -Mike
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I am wondering if it is possible to create an array, but the
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; number of array items would depend on the number value in an
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; input box.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; So, if the user entered 5, it would create:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; var arr = new Array(6);
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[0] = &amp;quot;Jani&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[1] = &amp;quot;Hege&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[2] = &amp;quot;Stale&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[3] = &amp;quot;Kai Jim&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[4] = &amp;quot;Borge&amp;quot;;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; arr[5] = &amp;quot;Tove&amp;quot;;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; &amp;gt; I am having a hard time understanding how I would do this with jQuery.- Ocultar texto de la cita -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; &amp;gt; - Mostrar texto de la cita -- Ocultar texto de la cita -
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; - Mostrar texto de la cita -
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Create-array-based-on-input-value-tp18621480s27240p18633530.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635813</id>
	<title>Jquery Cycle and XML</title>
	<published>2008-07-24T07:41:29Z</published>
	<updated>2008-07-24T07:41:29Z</updated>
	<author>
		<name>Anatalsceo</name>
	</author>
	<content type="html">&lt;br&gt;Hello,
&lt;br&gt;I've posted an unresponded post few days ago concerning cycle function
&lt;br&gt;in jquery.
&lt;br&gt;&lt;br&gt;I've change completly the function I was using to be able to get all
&lt;br&gt;the power of jquery.
&lt;br&gt;&lt;br&gt;Here is the function :
&lt;br&gt;I'm trying to greate a dynamic photo cycle after the info of a XML
&lt;br&gt;file.
&lt;br&gt;The xml loads great, but the cycle never runs.
&lt;br&gt;&lt;br&gt;any idea ?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;$(document).ready(function(){
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var marque = JSExtraireParamMarque();
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Open the students.xml file
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.get(&amp;quot;xml/listeProduits.xml&amp;quot;,{},function(xml){
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Build an HTML string
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; myHTMLOutput = '';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;	//myHTMLOutput += '&amp;lt;table width=&amp;quot;98%&amp;quot; border=&amp;quot;1&amp;quot; cellpadding=&amp;quot;0&amp;quot;
&lt;br&gt;cellspacing=&amp;quot;0&amp;quot;&amp;gt;';
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 	//myHTMLOutput += '&amp;lt;th&amp;gt;Name&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Age&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;Phone&amp;lt;/th&amp;gt;&amp;lt;th&amp;gt;SSN&amp;lt;/
&lt;br&gt;th&amp;gt;';
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Run the function for each student tag in the XML file
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('marque',xml).each(function(i) {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; nomMarque = $(this).find(&amp;quot;nomMarque&amp;quot;).text();
&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; myRE = new RegExp(nomMarque, &amp;quot;i&amp;quot;)
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if (marque.match(myRE)) {
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('produit',xml).each(function(i) {
&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; &amp;nbsp; &amp;nbsp; nom = $(this).find(&amp;quot;nom&amp;quot;).text();
&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; &amp;nbsp; &amp;nbsp; promotion = $(this).find(&amp;quot;promotion&amp;quot;).text();
&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; &amp;nbsp; &amp;nbsp; //nomMarque = $(this).find(&amp;quot;marque&amp;quot;).attr(&amp;quot;idMarque&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('#diaporama').append('&amp;lt;img src=&amp;quot;images/'+nom+'.jpg&amp;quot; width=&amp;quot;80&amp;quot;
&lt;br&gt;height=&amp;quot;108&amp;quot; /&amp;gt;');
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //buildDiapo (nom);
&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;});
&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; });
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //myHTMLOutput += '&amp;lt;/table&amp;gt;';
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; // Update the DIV called Content Area with the HTML string
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $('#diaporama').cycle({});
&lt;br&gt;&lt;br&gt;});
&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Jquery-Cycle-and-XML-tp18635813s27240p18635813.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18633104</id>
	<title>Drag Drop (sortable) questions</title>
	<published>2008-07-24T07:31:00Z</published>
	<updated>2008-07-24T07:31:00Z</updated>
	<author>
		<name>Stan Sainte-Rose</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;I'm trying to use the Jquery sortable (drag/drop)
&lt;br&gt;Everything works well but I need help on 2 topics.
&lt;br&gt;&lt;br&gt;First, when I dynamically add portlets, I recall this function :
&lt;br&gt;$('div.portletHolder').Sortable(.....);
&lt;br&gt;Otherwise, the portlet is not draggable.
&lt;br&gt;Is there a more elegant way to accomplish this?
&lt;br&gt;&lt;br&gt;To add a new portlet I use this function
&lt;br&gt;portlet=&amp;quot;htmlcontent&amp;quot;;
&lt;br&gt;$(portlet).prependTo(&amp;quot;#column1&amp;quot;);
&lt;br&gt;Is it possible to add some code to add the drag/drop functionnality to
&lt;br&gt;the newest portlet?
&lt;br&gt;Knowing that I need to serialize it.
&lt;br&gt;&lt;br&gt;My second question is about the animation when I drag and drop a
&lt;br&gt;portlet.
&lt;br&gt;How can I add a smooth animation when I drop the portlet?
&lt;br&gt;I've seen this website (&lt;a href=&quot;http://www.pageflakes.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.pageflakes.com&lt;/a&gt;) and I like the
&lt;br&gt;effect when you drop the portlet.
&lt;br&gt;&lt;br&gt;Any help?
&lt;br&gt;&lt;br&gt;Stan
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Drag-Drop-%28sortable%29-questions-tp18633104s27240p18633104.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18633061</id>
	<title>Re: Form Plugin: access xhr object</title>
	<published>2008-07-24T07:30:15Z</published>
	<updated>2008-07-24T07:30:15Z</updated>
	<author>
		<name>malsup</name>
	</author>
	<content type="html">&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I'm quite new to JQuery and started using the Form Plugin found here:&lt;a href=&quot;http://malsup.com/jquery/form/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://malsup.com/jquery/form/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; In my success callback I am trying to get hold of the XmlHttpRequest
&lt;br&gt;&amp;gt; instance that was used to make the Ajax request.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; However xhr does not seem available from the arguments passed into the
&lt;br&gt;&amp;gt; success callback? Looking at JQuery docs the ajax function does return
&lt;br&gt;&amp;gt; xhr instance, but how to get access when using the form plugin?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; The reason for this is server side returns certain response headers
&lt;br&gt;&amp;gt; which I would like to inspect and act upon.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; kind regards
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; bob
&lt;/div&gt;&lt;br&gt;&lt;br&gt;The XHR is not passed to the success handler, but it is passed to the
&lt;br&gt;&amp;quot;complete&amp;quot; handler so you could use that instead.
&lt;br&gt;&lt;br&gt;Mike
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Form-Plugin%3A-access-xhr-object-tp18632287s27240p18633061.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634245</id>
	<title>Re: Clone problem in IE...</title>
	<published>2008-07-24T07:10:58Z</published>
	<updated>2008-07-24T07:10:58Z</updated>
	<author>
		<name>Marcus Eby</name>
	</author>
	<content type="html">&lt;br&gt;I just found out that cloneNode doesn't pass the value in a file field
&lt;br&gt;when being cloned from inside an iframe in IE.
&lt;br&gt;Apparently this is an IE bug, and I've tried over 15 different ways of
&lt;br&gt;trying to clone the object, then change the values, and update the
&lt;br&gt;values, and even changing them before they get cloned, but nothing
&lt;br&gt;works.
&lt;br&gt;&lt;br&gt;After trying so many different options, and still having no value
&lt;br&gt;being cloned, so that the function won't work, I have given up.
&lt;br&gt;&lt;br&gt;If anyone else has had this problem and solved it, please post.
&lt;br&gt;&lt;br&gt;After spending years hating IE, this has definitely helped me to start
&lt;br&gt;thinking about FF only site-app design. &amp;lt;grin&amp;gt;
&lt;br&gt;&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;Marcus
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Clone-problem-in-IE...-tp18621127s27240p18634245.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634591</id>
	<title>finding the exact error when using $.ajax</title>
	<published>2008-07-24T07:06:52Z</published>
	<updated>2008-07-24T07:06:52Z</updated>
	<author>
		<name>Sridhar-15</name>
	</author>
	<content type="html">&lt;br&gt;Hi,
&lt;br&gt;&lt;br&gt;&amp;nbsp; I am using $.ajax method in an aspx page for the validation. When I
&lt;br&gt;run this on my localhost, it works fine. however, when I deploy this
&lt;br&gt;to our IIS server, it is not working. I am trying to get the error
&lt;br&gt;message but not sure how to get it. could some one please help me?
&lt;br&gt;&lt;br&gt;Following is the code.
&lt;br&gt;------------------
&lt;br&gt;&lt;br&gt;function ValidateRoutingNumber(event){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; var txt = event.target;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; if(txt != undefined){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if($.trim(txt.value).length &amp;gt; 0){
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $.ajax({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; type: &amp;quot;POST&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cache: false,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; url: &amp;quot;&amp;lt;%= Request.ApplicationPath %&amp;gt;/Validations.aspx/
&lt;br&gt;ValidateBankRouting&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; data: &amp;quot;{'RoutingNumber':'&amp;quot; + txt.value + &amp;quot;'}&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; contentType: &amp;quot;application/json; charset=utf-8&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; dataType: &amp;quot;json&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; error: function(XMLHttpRequest, textStatus, errorThrown)
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(errorThrown);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;},
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; success: function(msg) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var details &amp;nbsp;= eval(&amp;quot;(&amp;quot; + msg + &amp;quot;)&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(details.Valid == true){
&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; else {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; //invalid
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert(&amp;quot;Bank Routing number &amp;quot; + $(txt).val() + &amp;quot; is not
&lt;br&gt;a valid Bank Routing number.&amp;quot;);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $(txt).select();
&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; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }
&lt;br&gt;&amp;nbsp; &amp;nbsp; }
&lt;br&gt;&lt;br&gt;-- function
&lt;br&gt;&amp;lt;Runtime.Serialization.DataContract()&amp;gt; _
&lt;br&gt;&amp;nbsp; &amp;nbsp; Private Structure BankRoutValidationResults
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Runtime.Serialization.DataMember()&amp;gt; _
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public Valid As Boolean
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Runtime.Serialization.DataMember()&amp;gt; _
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public BankName As String
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;Runtime.Serialization.DataMember()&amp;gt; _
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Public BankNameInDB As Boolean
&lt;br&gt;&amp;nbsp; &amp;nbsp; End Structure
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;lt;WebMethod()&amp;gt; _
&lt;br&gt;&amp;nbsp; &amp;nbsp; Public Shared Function ValidateBankRouting(ByVal RoutingNumber As
&lt;br&gt;String) As String
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim objResult As BankRoutValidationResults
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim returnVal As String = String.Empty
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dim obj As BankRoutDAO
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult = New BankRoutValidationResults
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If ValidateRoutingNo(RoutingNumber) = False Then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.Valid = False
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.BankName = String.Empty
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.Valid = True
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; obj = New BankRoutDAO(RoutingNumber)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; If Not obj Is Nothing AndAlso obj.InDatabase Then
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.BankName = obj.Description.Trim
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.BankNameInDB = True
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Else
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.BankNameInDB = False
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; objResult.BankName = String.Empty
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; HttpContext.Current.Session(&amp;quot;BankRout&amp;quot;) =
&lt;br&gt;RoutingNumber
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End If
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; returnVal = JavaScriptConvert.SerializeObject(objResult)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Catch ex As Exception
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; LogException(ex.Source, ex.Message)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; End Try
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Return returnVal
&lt;br&gt;&amp;nbsp; &amp;nbsp; End Function
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/finding-the-exact-error-when-using-%24.ajax-tp18634591s27240p18634591.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18634845</id>
	<title>slideToggle() very jerky</title>
	<published>2008-07-24T06:59:08Z</published>
	<updated>2008-07-24T06:59:08Z</updated>
	<author>
		<name>Todd Davis-2</name>
	</author>
	<content type="html">&lt;br&gt;Hello - I am very new to jquery, so maybe I'm doing something wrong. I
&lt;br&gt;am trying to create a pretty simple expanding container. This is
&lt;br&gt;standard fare, with a title bar, and when you click on the +/- it
&lt;br&gt;should expand/collapse the contents of the container. Functionally,
&lt;br&gt;the code below is working just fine. My concern is that the movement
&lt;br&gt;(in both IE and FF) is jerky. To be more specific, the rollup looks
&lt;br&gt;pretty good, but when it expands again, there is a hesitation - it is
&lt;br&gt;not smooth.
&lt;br&gt;&lt;br&gt;Am I doing something wrong? Or is this a known issue?
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;http://
&lt;br&gt;www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;html xmlns=&amp;quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;head&amp;gt;
&lt;br&gt;&amp;lt;meta content=&amp;quot;text/html; charset=utf-8&amp;quot; http-equiv=&amp;quot;Content-Type&amp;quot; /&amp;gt;
&lt;br&gt;&amp;lt;script src=&amp;quot;javascript/jquery-1.2.6.min.js&amp;quot; type=&amp;quot;text/javascript&amp;quot;&amp;gt;&amp;lt;/
&lt;br&gt;script&amp;gt;
&lt;br&gt;&amp;lt;/head&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;body&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;table cellpadding=&amp;quot;0&amp;quot; cellspacing=&amp;quot;0&amp;quot; style=&amp;quot;border: 1px black solid;
&lt;br&gt;width: 300px;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td style=&amp;quot;background-color: navy; color: white; font-weight: bold;
&lt;br&gt;padding: 5px;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;a href=&amp;quot;#&amp;quot; onclick=&amp;quot;$('#slide').slideToggle('slow');&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;img alt=&amp;quot;Expand/Collapse&amp;quot; src=&amp;quot;images/Minus.gif&amp;quot; style=&amp;quot;margin-
&lt;br&gt;right: 10px; border-style: none;&amp;quot; /&amp;gt;&amp;lt;/a&amp;gt;Title&amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;tr&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;td style=&amp;quot;background-color: gray;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id=&amp;quot;slide&amp;quot; style=&amp;quot;width: 100%; padding: 0px; margin: 5px;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Vestibulum accumsan imperdiet pede. Donec est sapien, facilisis a,
&lt;br&gt;pretium
&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; nec, vehicula in, sapien. Donec luctus. In tincidunt, sem in
&lt;br&gt;dapibus
&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; adipiscing, pede leo euismod ligula, eget mattis est orci ut
&lt;br&gt;lectus.
&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; Proin ligula. Donec fringilla volutpat nisl. Nam a lacus non orci
&lt;br&gt;vehicula
&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; semper. Nam iaculis, lacus nec auctor tincidunt, velit ipsum
&lt;br&gt;iaculis
&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; elit, eget semper nibh sapien non justo. Cras tellus turpis,
&lt;br&gt;iaculis
&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; sit amet, tempor nec, rhoncus vitae, purus. Sed pharetra commodo
&lt;br&gt;orci.
&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; Fusce auctor tincidunt nulla. Pellentesque habitant morbi
&lt;br&gt;tristique
&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; senectus et netus et malesuada fames ac turpis egestas. Vivamus
&lt;br&gt;tempus
&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; fermentum nunc. Cras rhoncus sapien vel felis. Duis elit enim,
&lt;br&gt;vulputate
&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; in, eleifend a, tempor quis, lacus. Etiam volutpat, felis vitae
&lt;br&gt;hendrerit
&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; pharetra, eros urna pulvinar nibh, et ultricies neque augue nec
&lt;br&gt;dui.
&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; Phasellus non tellus. Phasellus faucibus lectus nec augue.
&lt;br&gt;Praesent
&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; vulputate. Nam leo neque, consectetuer non, aliquet at, accumsan
&lt;br&gt;vitae,
&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; sapien. &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/td&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/tr&amp;gt;
&lt;br&gt;&amp;lt;/table&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;/body&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;/html&amp;gt;
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/slideToggle%28%29-very-jerky-tp18634845s27240p18634845.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18632486</id>
	<title>Re: Can't save jEditable value</title>
	<published>2008-07-24T06:57:29Z</published>
	<updated>2008-07-24T06:57:29Z</updated>
	<author>
		<name>Mika Tuupola</name>
	</author>
	<content type="html">&lt;br&gt;&lt;br&gt;On Jul 23, 2008, at 8:21 PM, Mat_ wrote:
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; if ( isset($_POST['value']))
&lt;br&gt;&amp;gt; 	{
&lt;br&gt;&amp;gt; 		$resume = $_POST['value'];
&lt;br&gt;&amp;gt; 		$sql = (&amp;quot;UPDATE customer SET
&lt;br&gt;&amp;gt; resume='&amp;quot;.mysql_real_escape_string($resume).&amp;quot;' WHERE
&lt;br&gt;&amp;gt; user_name='&amp;quot;.mysql_real_escape_string($_SESSION[logname]).&amp;quot;' &amp;quot;);
&lt;br&gt;&amp;gt; 		mysql_query($sql) or die('impossible de modifier le
&lt;br&gt;&amp;gt; resume'.mysql_error());
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 		$message_ok = &amp;quot;Votre CV a bien &amp;eacute;t&amp;eacute; enregistr&amp;eacute;&amp;quot;;
&lt;br&gt;&amp;gt; 		updateDateUser($_SESSION['logname'],$table_name);
&lt;br&gt;&amp;gt; 	}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; If someone see the problem, it could help me so much :)
&lt;/div&gt;&lt;br&gt;&lt;br&gt;Have you check do you get any errors when you try to save to database? &amp;nbsp;
&lt;br&gt;Have you checked what values actually are in database?
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Mika Tuupola
&lt;br&gt;&lt;a href=&quot;http://www.appelsiini.net/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.appelsiini.net/&lt;/a&gt;&lt;br&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Can%27t-save-jEditable-value-tp18616553s27240p18632486.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635764</id>
	<title>Re: jQuery XML to JSON Plugin v1.0 and file size problem</title>
	<published>2008-07-24T06:57:21Z</published>
	<updated>2008-07-24T06:57:21Z</updated>
	<author>
		<name>chris thatcher-4</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;oops, I actually read the first message incorrectly, I thought deepsnow was saying it took over 400 seconds to go from xml to js.&amp;nbsp; sorry.&amp;nbsp; Can you make sure that you can point the browser directly at the large xml file url and that it loads successfully there first?&lt;br&gt;
&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Jul 24, 2008 at 9:13 AM, S P Arif Sahari Wibowo &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18635764&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;arifsaha@...&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;div class=&quot;Ih2E3d&quot;&gt;&lt;br&gt;
On Wed, 23 Jul 2008, deepsnow wrote:&lt;br&gt;
&amp;gt; I tried to load a 7.5MB xml file and it 404s on me. Is there a&lt;br&gt;
&amp;gt; file size limit setting somewhere or a way to know what the&lt;br&gt;
&amp;gt; max file size I can use is?&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;I am a bit new here, but I believe 404 errors are from server,&lt;br&gt;
not from client-side JavaScript. So, I believe the plugin have&lt;br&gt;
no direct limitation in this case, maybe the server have problem&lt;br&gt;
provide those 7.5 MB in the particular setup and manner you&lt;br&gt;
download it. One thing to check is whether you can download that&lt;br&gt;
XML without script at all. There can be timeout built to server&lt;br&gt;
and/or browser causing big download to fail. It can be tricky if&lt;br&gt;
the download size fall into grey area, when if everything good&lt;br&gt;
it still fall under timeout, but if moon is in certain position&lt;br&gt;
in the sky the download got slowed enough to timeout.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
 &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;(stephan paul) Arif Sahari Wibowo&lt;br&gt;
 &amp;nbsp; &amp;nbsp;_____ &amp;nbsp;_____ &amp;nbsp;_____ &amp;nbsp;_____&lt;br&gt;
 &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;&lt;a href=&quot;http://www.arifsaha.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://www.arifsaha.com/&lt;/a&gt;&lt;br&gt;
&lt;/font&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;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/jQuery-XML-to-JSON-Plugin-v1.0--and-file-size-problem-tp18621126s27240p18635764.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18632445</id>
	<title>Re: IE7 Hover problem</title>
	<published>2008-07-24T06:54:43Z</published>
	<updated>2008-07-24T06:54:43Z</updated>
	<author>
		<name>djl</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;Karl,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Yes, it was the commas.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I just removed the commas from my original code and it's now working fine.&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks very much&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;div&gt;&lt;div&gt;On 24 Jul 2008, at 14:45, Karl Swedberg wrote:&lt;/div&gt;&lt;br class=&quot;Apple-interchange-newline&quot;&gt;&lt;blockquote type=&quot;cite&quot;&gt;&lt;div style=&quot;word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; &quot;&gt;Not sure if this is the problem, but you might want to try putting a semicolon after your variables:&lt;div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; var cssObj = {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;-75px,0&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}; // &amp;lt;-- add the semicolon here.&lt;/blockquote&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;div&gt;If that doesn't work, maybe you could simplify by putting the object literal directly in the css argument:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Oh, wait! Those commas shouldn't be in the backgroundPosition value, should they? Try it like this;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; $(&quot;#myicon&quot;).hover(function () {&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; $(this).css(backgroundPosition: &quot;-75px 0&quot;);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}, function () {&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; $(this).css(backgroundPosition: &quot;0 0&quot;);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;br&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;Hope that helps.&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 24, 2008, at 8:30 AM, djl 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;Hi,&lt;br&gt;&lt;br&gt;I've got a simple page here with a mouse-over effect using .hover to change the background position of the image:-&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&quot;&gt;&lt;br&gt;&amp;lt;html xmlns=&quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&quot;&gt;&lt;br&gt;&amp;lt;head&gt;&lt;br&gt;&amp;lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;&lt;br&gt;&amp;lt;title&gt;Untitled Document&amp;lt;/title&gt;&lt;br&gt;&amp;lt;style type=&quot;text/css&quot;&gt;&lt;br&gt;#iconsmenu {&lt;br&gt;position:relative;&lt;br&gt;background:#ccc;&lt;br&gt;width:600px;&lt;br&gt;height:110px;&lt;br&gt;left:92px;&lt;br&gt;}&lt;br&gt;&lt;br&gt;#myicon {&lt;br&gt;width:75px;&lt;br&gt;height:110px;&lt;br&gt;background:url(images/icons/myicon.png) no-repeat;&lt;br&gt;float:left;&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&amp;lt;/style&gt;&lt;br&gt;&lt;br&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;javascript/jquery-1.2.6.js&quot;&gt;&amp;lt;/script&gt;&lt;br&gt;&amp;lt;script type=&quot;text/javascript&quot;&gt;&lt;br&gt;&lt;br&gt;$(document).ready(function() {&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;br&gt;$(&quot;#myicon&quot;).hover(function () {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cssObj = {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;-75px,0&quot;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(this).css(cssObj);&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}, function () {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cssObj = {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;0,0&quot;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(this).css(cssObj);&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;br&gt;&lt;br&gt;});&lt;br&gt;&lt;br&gt;&amp;lt;/script&gt;&lt;br&gt;&amp;lt;/head&gt;&lt;br&gt;&lt;br&gt;&amp;lt;body&gt;&lt;br&gt;&amp;lt;div id=&quot;iconsmenu&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;div id=&quot;myicon&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/div&gt;&lt;br&gt;&lt;br&gt;&amp;lt;/div&gt;&lt;br&gt;&amp;lt;/body&gt;&lt;br&gt;&amp;lt;/html&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;It works fine in Safari on both Mac and PC, FF on Mac but IE7 keeps throwing an Error: Invalid Argument at line 1120 of jQuery!?!?!?&lt;br&gt;Line 1120 is: elem[ name ] = value;&lt;br&gt;&lt;br&gt;&lt;br&gt;Does anyone have any thoughts on this?&lt;br&gt;It's driving me mad.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&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;/div&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE7-Hover-problem-tp18630943s27240p18632445.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635030</id>
	<title>An event from the ajax result</title>
	<published>2008-07-24T06:46:28Z</published>
	<updated>2008-07-24T06:46:28Z</updated>
	<author>
		<name>Didats Triadi-2</name>
	</author>
	<content type="html">&lt;br&gt;Hi All,
&lt;br&gt;&lt;br&gt;I'm quite new in JQuery and this mailing list. And want to ask
&lt;br&gt;something that I couldn't get the answer yet.
&lt;br&gt;I hope someone can help me.
&lt;br&gt;&lt;br&gt;I have this HTML link:
&lt;br&gt;&lt;br&gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;abc&amp;quot;&amp;gt;the link&amp;lt;/a&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;And this JQuery.
&lt;br&gt;&lt;br&gt;$(&amp;quot;.abc&amp;quot;).click(function() {
&lt;br&gt;$.ajax({
&lt;br&gt;url: &amp;quot;url.php&amp;quot;,
&lt;br&gt;method: &amp;quot;post&amp;quot;,
&lt;br&gt;data: &amp;quot;data1=1&amp;quot;,
&lt;br&gt;success: function(m) {
&lt;br&gt;$(&amp;quot;.parent_div&amp;quot;).append(m);
&lt;br&gt;}
&lt;br&gt;});
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;&lt;br&gt;The Ajax process will result this (the m variable):
&lt;br&gt;&lt;br&gt;&amp;lt;a href=&amp;quot;#&amp;quot; class=&amp;quot;.abc&amp;quot;&amp;gt;link 1&amp;lt;/a&amp;gt;
&lt;br&gt;&lt;br&gt;The question is, how can I make the $(&amp;quot;.abc&amp;quot;).click() above, working
&lt;br&gt;on the HTML ajax result?
&lt;br&gt;&lt;br&gt;Thanks in advance.
&lt;br&gt;Didats Triadi
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/An-event-from-the-ajax-result-tp18635030s27240p18635030.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18632271</id>
	<title>Re: IE7 Hover problem</title>
	<published>2008-07-24T06:45:37Z</published>
	<updated>2008-07-24T06:45:37Z</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;Not sure if this is the problem, but you might want to try putting a semicolon after your variables:&lt;div&gt;&lt;blockquote type=&quot;cite&quot;&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; var cssObj = {&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;-75px,0&quot;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}; // &amp;lt;-- add the semicolon here.&lt;/blockquote&gt;&lt;div&gt;&lt;br class=&quot;webkit-block-placeholder&quot;&gt;&lt;/div&gt;&lt;div&gt;If that doesn't work, maybe you could simplify by putting the object literal directly in the css argument:&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Oh, wait! Those commas shouldn't be in the backgroundPosition value, should they? Try it like this;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;&amp;nbsp;&amp;nbsp; $(&quot;#myicon&quot;).hover(function () {&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; $(this).css(backgroundPosition: &quot;-75px 0&quot;);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;}, function () {&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;nbsp; $(this).css(backgroundPosition: &quot;0 0&quot;);&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;br&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;Hope that helps.&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 24, 2008, at 8:30 AM, djl 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;Hi,&lt;br&gt;&lt;br&gt;I've got a simple page here with a mouse-over effect using .hover to change the background position of the image:-&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &quot;-//W3C//DTD XHTML 1.0 Transitional//EN&quot; &quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&quot;&gt;&lt;br&gt;&amp;lt;html xmlns=&quot;&lt;a href=&quot;http://www.w3.org/1999/xhtml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/1999/xhtml&lt;/a&gt;&quot;&gt;&lt;br&gt;&amp;lt;head&gt;&lt;br&gt;&amp;lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot; /&gt;&lt;br&gt;&amp;lt;title&gt;Untitled Document&amp;lt;/title&gt;&lt;br&gt;&amp;lt;style type=&quot;text/css&quot;&gt;&lt;br&gt;#iconsmenu {&lt;br&gt;position:relative;&lt;br&gt;background:#ccc;&lt;br&gt;width:600px;&lt;br&gt;height:110px;&lt;br&gt;left:92px;&lt;br&gt;}&lt;br&gt;&lt;br&gt;#myicon {&lt;br&gt;width:75px;&lt;br&gt;height:110px;&lt;br&gt;background:url(images/icons/myicon.png) no-repeat;&lt;br&gt;float:left;&lt;br&gt;&lt;br&gt;}&lt;br&gt;&lt;br&gt;&amp;lt;/style&gt;&lt;br&gt;&lt;br&gt;&amp;lt;script type=&quot;text/javascript&quot; src=&quot;javascript/jquery-1.2.6.js&quot;&gt;&amp;lt;/script&gt;&lt;br&gt;&amp;lt;script type=&quot;text/javascript&quot;&gt;&lt;br&gt;&lt;br&gt;$(document).ready(function() {&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;br&gt;$(&quot;#myicon&quot;).hover(function () {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cssObj = {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;-75px,0&quot;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(this).css(cssObj);&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;}, function () {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;var cssObj = {&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;backgroundPosition: &quot;0,0&quot;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;}&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(this).css(cssObj);&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&lt;br&gt; &amp;nbsp;&amp;nbsp;&amp;nbsp;});&lt;br&gt;&lt;br&gt;});&lt;br&gt;&lt;br&gt;&amp;lt;/script&gt;&lt;br&gt;&amp;lt;/head&gt;&lt;br&gt;&lt;br&gt;&amp;lt;body&gt;&lt;br&gt;&amp;lt;div id=&quot;iconsmenu&quot;&gt;&lt;br&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;div id=&quot;myicon&quot;&gt;&lt;br&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;	&lt;/span&gt;&amp;lt;/div&gt;&lt;br&gt;&lt;br&gt;&amp;lt;/div&gt;&lt;br&gt;&amp;lt;/body&gt;&lt;br&gt;&amp;lt;/html&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;It works fine in Safari on both Mac and PC, FF on Mac but IE7 keeps throwing an Error: Invalid Argument at line 1120 of jQuery!?!?!?&lt;br&gt;Line 1120 is: elem[ name ] = value;&lt;br&gt;&lt;br&gt;&lt;br&gt;Does anyone have any thoughts on this?&lt;br&gt;It's driving me mad.&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;/div&gt;&lt;/body&gt;&lt;/html&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/IE7-Hover-problem-tp18630943s27240p18632271.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18635301</id>
	<title>Re: jQuery XML to JSON Plugin v1.0 and file size problem</title>
	<published>2008-07-24T06:37:48Z</published>
	<updated>2008-07-24T06:37:48Z</updated>
	<author>
		<name>chris thatcher-4</name>
	</author>
	<content type="html">&lt;div dir=&quot;ltr&quot;&gt;Yeah, I&amp;#39;d also suggest even at anything nearing 1 mb you might see more efficiency with jquery.xslt,js and an xml2js xsl.&amp;nbsp; Most Restful XML databases like eXist will also let you request the resoruce as json, and break the processing into smaller request/response bodies by providing an xpath in the url.&amp;nbsp; For some thing that big, it really is better to push the xml2json off to the server because otherwise your browser is building a huge DOM it&amp;#39;s going to throw away anyway.&lt;br&gt;
&lt;br&gt;Thatcher&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Jul 23, 2008 at 10:00 PM, Ariel Flesler &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18635301&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;aflesler@...&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;
7.5 mb ?!&lt;br&gt;
&lt;br&gt;
I&amp;#39;d try another approach for transfer.. maybe JSON or plain text with&lt;br&gt;
separators.&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
--&lt;br&gt;
Ariel Flesler&lt;br&gt;
&lt;a href=&quot;http://flesler.blogspot.com/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://flesler.blogspot.com/&lt;/a&gt;&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;
On 23 jul, 18:31, deepsnow &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18635301&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;daneens...@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&amp;gt; Hi Gang,&lt;br&gt;
&amp;gt; Im using the xmltoJSON plugin. It works fine for an xml file of 300kb&lt;br&gt;
&amp;gt; or so. Im loading the file from an ajax call to a local file. Im going&lt;br&gt;
&amp;gt; to have some big xml files, so I tried making some big file tests. I&lt;br&gt;
&amp;gt; tried to load a 7.5MB xml file and it 404s on me. Is there a file size&lt;br&gt;
&amp;gt; limit setting somewhere or a way to know what the max file size I can&lt;br&gt;
&amp;gt; use is?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Thanks for the help.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; DE&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;/div&gt;
</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/jQuery-XML-to-JSON-Plugin-v1.0--and-file-size-problem-tp18621126s27240p18635301.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18632012</id>
	<title>Autcomplete error: list.scrollTop is not a function</title>
	<published>2008-07-24T06:31:50Z</published>
	<updated>2008-07-24T06:31:50Z</updated>
	<author>
		<name>MorningZ</name>
	</author>
	<content type="html">&lt;br&gt;Can't quite grasp why this is happening on certain pages (and sorry,
&lt;br&gt;these pages are behind login, so really can't publicly share a link)
&lt;br&gt;&lt;br&gt;Line 707 of the autocomplete 1.0.2 is throwing
&lt;br&gt;&lt;br&gt;&amp;quot;list.scrollTop is not a function&amp;quot;
&lt;br&gt;&lt;br&gt;show: function() {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var offset = $(input).offset();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; element.css({
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: typeof options.width == &amp;quot;string&amp;quot; || options.width &amp;gt; 0 ?
&lt;br&gt;options.width : $(input).width(),
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; top: offset.top + input.offsetHeight,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: offset.left
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }).show();
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(options.scroll) {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; list.scrollTop(0); &amp;nbsp; &amp;nbsp;&amp;lt;&amp;lt;--- right here ---------------
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; list.css({
&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; maxHeight: options.scrollHeight,
&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; overflow: 'auto'
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });
&lt;br&gt;&lt;br&gt;&lt;br&gt;I saw some previous talk from late last year about this error, but it
&lt;br&gt;had to do with a conflict with UI DatePicker, which i do not have on
&lt;br&gt;this page i am looking at right now... &amp;nbsp; i do have BlockUI and
&lt;br&gt;ClickMenu in the page, but removing those from the page didn't make a
&lt;br&gt;difference
&lt;br&gt;&lt;br&gt;this is my code to wire up the autocomplete
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; $(&amp;quot;#Page_Search&amp;quot;).autocomplete(
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;quot;/common/services/Autocomplete.ashx&amp;quot;,
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; { extraParams: { mode: &amp;quot;AFFASB&amp;quot; } }
&lt;br&gt;&amp;nbsp; &amp;nbsp; );
&lt;br&gt;&lt;br&gt;so i don't have anything special defined with scroll or &amp;quot;max&amp;quot; &amp;nbsp;(which
&lt;br&gt;i see line 23 in autocomplete js uses '.scroll')
&lt;br&gt;&lt;br&gt;Oh, and also to mention, the autocomplete functionality does work, but
&lt;br&gt;that JavaScript error could cause other problems
&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Autcomplete-error%3A-list.scrollTop-is-not-a-function-tp18632012s27240p18632012.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18631952</id>
	<title>Re: AutoComplete</title>
	<published>2008-07-24T06:28:16Z</published>
	<updated>2008-07-24T06:28:16Z</updated>
	<author>
		<name>shapper</name>
	</author>
	<content type="html">&lt;br&gt;Please, anyone?
&lt;br&gt;&lt;br&gt;Thank You,
&lt;br&gt;Miguel
&lt;br&gt;&lt;br&gt;On Jul 22, 4:17 pm, shapper &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18631952&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdmo...@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; The JSon method is always returning a simple array:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [&amp;quot;First&amp;quot;,&amp;quot;Second&amp;quot;]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Do I need to parse it? I tried but it does not work.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I then tried:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;       $(&amp;quot;#Subjects&amp;quot;).autocomplete(&amp;quot;GetSubjects&amp;quot;, {
&lt;br&gt;&amp;gt;         autoFill: true,
&lt;br&gt;&amp;gt;         cacheLength: 1,
&lt;br&gt;&amp;gt;         multiple: true,
&lt;br&gt;&amp;gt;         scrollHeight: 200,
&lt;br&gt;&amp;gt;         selectFirst: false,
&lt;br&gt;&amp;gt;                     width: 260
&lt;br&gt;&amp;gt;                   });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; But it does not work to.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any idea?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Thanks,
&lt;br&gt;&amp;gt; Miguel
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On Jul 22, 1:02 am, shapper &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18631952&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdmo...@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Hello,
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; I have a JQuery AutoComplete thats gets the value using JSon.
&lt;br&gt;&amp;gt; &amp;gt; Using Firebug I see that the values are being returned in the right
&lt;br&gt;&amp;gt; &amp;gt; way:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; [&amp;quot;First&amp;quot;,&amp;quot;Second&amp;quot;]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; But I get an error:
&lt;br&gt;&amp;gt; &amp;gt; value is undefined
&lt;br&gt;&amp;gt; &amp;gt; highlight()()JQuery.A...mplete.js (line 409)
&lt;br&gt;&amp;gt; &amp;gt; fillList()JQuery.A...mplete.js (line 648)
&lt;br&gt;&amp;gt; &amp;gt; display()()JQuery.A...mplete.js (line 666)
&lt;br&gt;&amp;gt; &amp;gt; receiveData()JQuery.A...mplete.js (line 316)
&lt;br&gt;&amp;gt; &amp;gt; success()()JQuery.A...mplete.js (line 355)
&lt;br&gt;&amp;gt; &amp;gt; success()JQuery.js (line 2818)
&lt;br&gt;&amp;gt; &amp;gt; onreadystatechange()()JQuery.js (line 2773)
&lt;br&gt;&amp;gt; &amp;gt; [Break on this error] return value.replace(new RegExp(&amp;quot;(?![^...^&amp;;]
&lt;br&gt;&amp;gt; &amp;gt; +;)&amp;quot;, &amp;quot;gi&amp;quot;), &amp;quot;&amp;lt;strong&amp;gt;$1&amp;lt;/strong&amp;gt;&amp;quot;);
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; My AutoComplete is as follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;       $(&amp;quot;#Subjects&amp;quot;).autocomplete(&amp;quot;GetSubjects&amp;quot;, {
&lt;br&gt;&amp;gt; &amp;gt;         autoFill: true,
&lt;br&gt;&amp;gt; &amp;gt;         cacheLength: 1,
&lt;br&gt;&amp;gt; &amp;gt;         multiple: true,
&lt;br&gt;&amp;gt; &amp;gt;         scrollHeight: 200,
&lt;br&gt;&amp;gt; &amp;gt;         selectFirst: false,
&lt;br&gt;&amp;gt; &amp;gt;         width: 260,
&lt;br&gt;&amp;gt; &amp;gt;         parse: function(data) {
&lt;br&gt;&amp;gt; &amp;gt;                             return $.map(eval(data), function(row) {
&lt;br&gt;&amp;gt; &amp;gt;                                     return {
&lt;br&gt;&amp;gt; &amp;gt;                                             data: row,
&lt;br&gt;&amp;gt; &amp;gt;                                             value: row.Value,
&lt;br&gt;&amp;gt; &amp;gt;                                             result: row.Value
&lt;br&gt;&amp;gt; &amp;gt;                                     }
&lt;br&gt;&amp;gt; &amp;gt;                             });
&lt;br&gt;&amp;gt; &amp;gt;                     },
&lt;br&gt;&amp;gt; &amp;gt;                     formatItem: function(item) {
&lt;br&gt;&amp;gt; &amp;gt;                             return item.Value;
&lt;br&gt;&amp;gt; &amp;gt;                     }
&lt;br&gt;&amp;gt; &amp;gt;                   });
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; What am I doing wrong?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; Thanks,
&lt;br&gt;&amp;gt; &amp;gt; Miguel
&lt;br&gt;&lt;/div&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/AutoComplete-tp18579978s27240p18631952.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18632288</id>
	<title>Re: jQuery XML to JSON Plugin v1.0  and file size problem</title>
	<published>2008-07-24T06:13:23Z</published>
	<updated>2008-07-24T06:13:23Z</updated>
	<author>
		<name>S P Arif Sahari Wibowo</name>
	</author>
	<content type="html">&lt;br&gt;On Wed, 23 Jul 2008, deepsnow wrote:
&lt;br&gt;&amp;gt