[jQuery] Re: Cookie problem in Safari 3.1.1

2008-07-20 Thread Karl Rudd
I'm not sure. I don't know what could be causing an eventCache error, I've never heard of it. Karl Rudd On Fri, Jul 18, 2008 at 7:41 PM, [EMAIL PROTECTED] wrote: Dear folk, I checked it , I ahve a serious problem with IE7 and 6 ... when I over load the Cookie some times

[jQuery] Finding the element which has focus

2008-07-20 Thread Arun Kumar
I am using jQuery table key navigation plugin and I have three key navigateable tables. And focus can be moved across tables. How can I know the table name which has focus?

[jQuery] Re: LightBox (or Modal) with ajax response from a POST type

2008-07-20 Thread asle
Not sure if I understand but you need to bind an event to the content which is not on the page on load. Livequery http://brandonaaron.net/docs/livequery/ can do that. I use this lightbox plugin http://leandrovieira.com/projects/jquery/lightbox/ if it is photos you want to display., And it

[jQuery] how to stop jquery execution

2008-07-20 Thread robert123
I have jquery for loop it runs for about an hour doing some processing before stopping. In the for loop it execute alot of jquery Ajax post statement. As the execution is quite long, I might want to stop the javascript sometime using another button in the form, where the button will can another

[jQuery] Re: leandrovieira.com lightbox problems with several images

2008-07-20 Thread asle
Anyone? Nobody using this lightbox plugin? /asle

[jQuery] jQuery Corner plugin not working

2008-07-20 Thread Muzzzy
Hi, I'm pretty new to jQuery package and as a training opportunity I 'm converting my asp.net ajax site to use jQuery instead. Now, I need to use round corners functionlity and I downloaded the jquery.corner.js plugin, but when I try to use it, it doesn't seem to work right. Consider this simple

[jQuery] Re: leandrovieira.com lightbox problems with several images

2008-07-20 Thread asle
Thanks. I did not know that. I removed that but that did not solve my problem. /asle

[jQuery] Re: How can I downlod that jQuery Ipod Drilldown menu?

2008-07-20 Thread MorningZ
If you go to their demo page: http://www.filamentgroup.com/examples/menusHierarchical/ you can grab all the needed files (which appears to be 3 js and a css file) using Firefox and firebug

[jQuery] Re: how to stop jquery execution

2008-07-20 Thread Syam
Try checking for a status variable in the for loop and change that variable on button click. On Jul 20, 12:30 am, robert123 [EMAIL PROTECTED] wrote: I have jquery for loop it runs for about an hour doing some processing before stopping. In the for loop it execute alot of jquery Ajax post

[jQuery] Re: BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-20 Thread Syam
Please check your HTML. It's missing a closing div (put a /div just before /form) Hope that helps! -Syam On Jul 20, 1:17 am, Mark [EMAIL PROTECTED] wrote: Hi, I'm not the first person to post this problem: http://groups.google.com/group/jquery-en/browse_thread/thread/4c60ce5...

[jQuery] Re: how to stop jquery execution

2008-07-20 Thread ..:: sheshnjak ::..
Hi, you can envelope your for loop in an if statement to test for boolean variable that will control execution like this: var loopControl=true; for (var=startvalue;var=endvalue;var=var+increment){ if(loopControl){ // your loop code goes here } } and now, if you set

[jQuery] Re: Create a class on run-time?

2008-07-20 Thread Evert
I mean (2) create css set of rules. Now i have a simple way to modify the css set of rules. Thanks. : ) On Jul 20, 1:15 am, Ariel Flesler [EMAIL PROTECTED] wrote: You mean, (1) add a class to an element, or (2) create css set of rules ? if (1): check the docs (docs.jquery.com). if(2):

[jQuery] Re: Forms: Convert spaces to +'s, and how to GET only certain form elements?

2008-07-20 Thread Mickster
I think you can use .replace(/%20/g, +) after encodeURIComponent(String) to replace the %20 with a +. Like: var encodedString = encodeURIComponent(dog cat horse whale); encodedString.replace(/%20/g, +); Good Luck! //Mickster On Jul 20, 3:24 am, spicyj [EMAIL PROTECTED] wrote:

[jQuery] Re: hover links to fadeIn/Out Divs

2008-07-20 Thread gossamerLL
Never mind. I figured it out. The problem was div style=clear:both;/ -- View this message in context: http://www.nabble.com/hover-links-to-fadeIn-Out-Divs-tp18550252s27240p18550694.html Sent from the jQuery General Discussion mailing list archive at Nabble.com.

[jQuery] Re: [Validate] Maximum call stack size exceeded.

2008-07-20 Thread Jörn Zaefferer
Try this: submitHandler: function(form) { $(#loginBtn).hide(slow); form.submit(); }, The subtle difference: $(form).submit() triggers the validation again, form.submit() doesn't. Jörn On Sun, Jul 20, 2008 at 5:23 AM, Steffan A.

[jQuery] Re: jQuery Corner plugin not working

2008-07-20 Thread Adam
You need to wrap your javascript in a ready event, like this: script type=text/javascript $(document).ready(function() { var objs = $('#divHello') objs.corner(); }); /script It may also be a good idea to put this in the head if you can. Check out this for more information on

[jQuery] Re: attr(style: ) vs. css

2008-07-20 Thread Danny
Also attr('style', 'prop:val') replaces the entire inline style. css() just replaces that property. Danny On Jul 19, 12:37 pm, Geir [EMAIL PROTECTED] wrote: Thanks!

[jQuery] Re: unsubscribe (was: Create a class on run-time?)

2008-07-20 Thread Brian J. Fink
Do NOT reply to an existing thread with a different topic? Don't you know where the New Post link is? And besides, you can go to your account from the My Account link at the top of this page. Then click on the button that says, Manage Subscriptions and scroll down the page that appears, until

[jQuery] Re: Create a class on run-time?

2008-07-20 Thread Brian J. Fink
For the second time, I am posting this to the errant poster named my name. Do NOT post an unsubscribe request to an existing thread. Don't you know how to find the link for posting a new topic? Besides, you can unsubscribe from your My Account link at the top of this page. Click the button marked

[jQuery] Re: Forms: Convert spaces to +'s, and how to GET only certain form elements?

2008-07-20 Thread spicyj
encodedString.replace(/%20/g, +); Or simply decodeURIComponent(dog+cat%20horse+whale).

[jQuery] Minifying

2008-07-20 Thread [EMAIL PROTECTED]
I was curious what the jQuery guys use to minify their files? I saw there are two big ones out there, JSMin and YUI Compressor and was just curious which jQuery uses and if there are any special settings they use. Thanks in advance!

[jQuery] Re: Lighbox not working

2008-07-20 Thread pedramphp
You have sent me the old version of Lighbox I have used it in my current project without any problem .But I was fascinated that how could they upload a Plugin which doesn't support safar!!! On Jul 18, 10:58 pm, asle [EMAIL PROTECTED] wrote: I can confirm this. The large image opens in the

[jQuery] Farbtastic - need some help bad.

2008-07-20 Thread DooLally
Hi All, i'm going crazy trying to get a pretty basic feature implemented with Farbtastic. I'm fairly new to jQuery so i hope this is just me being thick. what I want to do is have 3 input boxes (just like in demo2.html), which also controls the color of an additional element, i.e. click input

[jQuery] Re: Forms and syntax: Radio buttons and tutorials?

2008-07-20 Thread Micky Hulse
I guess this would be even better: $(#option01:checked) Not sure why I did not think of that earlier. :) On Jul 20, 11:53 am, Micky Hulse [EMAIL PROTECTED] wrote: Hi, I have a form (#fmSearch) with three radio buttons: input name=options value=a.html id=option01 type=radio ... input

[jQuery] ycodaslider in an iframe

2008-07-20 Thread Matt2012
dosent work anyone know a fix?

[jQuery] get textarea content and display

2008-07-20 Thread chris
Hi, I'm new to jQuery, so please take me slow :) I've got a textarea: textarea cols=30 class=textarea id=code name=code/textarea And a div: div id=code_preview/div For example if i want to write the code for embeding a youtube vid in the textarea i want the div to display the embeded vid.

[jQuery] jQuery.com Broken?

2008-07-20 Thread xwisdom
Hello, The website is not rendering the CSS.

[jQuery] Re: Forms: Convert spaces to +'s, and how to GET only certain form elements?

2008-07-20 Thread Micky Hulse
This worked perfectly: HTML: form name=fmSearch ... input type=text name=search id=fmSearchKeywords title=Search... ... /form JS: $(function() { ... ... $('form#fmSearch').submit(function() { var encodedString = encodeURIComponent($('#fmSearchKeywords').val()); encodedString.replace(/%20/g,

[jQuery] jQuery made these search tools possible, too

2008-07-20 Thread persilj
hello, I'm becoming quite enthusiastic about jQuery as it has made many solvable issues much more easier to handle. I'd like to introduce to you the following 2 search tools. Plugins used were jQuery UI (tabs and slider) and Cookie. If I had to choose one single most useful jQuery-aided feature

[jQuery] Re: jQuery.com Broken?

2008-07-20 Thread Kevin Pepperman
same here. no CSS. degrading gracefully. On Sun, Jul 20, 2008 at 3:46 PM, xwisdom [EMAIL PROTECTED] wrote: Hello, The website is not rendering the CSS.

[jQuery] Re: BlockUI Plugin Doesn't Unblock in IE 6/7

2008-07-20 Thread Mark
Dear Syam, That solved it! Thank you for catching that. On Jul 20, 3:16 pm, Syam [EMAIL PROTECTED] wrote: Please check your HTML. It's missing a closing div (put a /div just before /form) Hope that helps! -Syam On Jul 20, 1:17 am, Mark [EMAIL PROTECTED] wrote: Hi, I'm not

[jQuery] Re: Forms: Convert spaces to +'s, and how to GET only certain form elements?

2008-07-20 Thread Micky Hulse
Thank you all Much much appreciated!!! Have a great day! Cheers, Micky On Jul 20, 2:52 am, Mickster [EMAIL PROTECTED] wrote: I think you can use .replace(/%20/g, +) after encodeURIComponent(String) to replace the %20 with a +. Like: var encodedString = encodeURIComponent(dog cat horse

[jQuery] Mike Alsup: .phps source view not functioning at malsup.com

2008-07-20 Thread Gruvin
Hi Mike. First up, thanks for all your hard work with the jQuery team. It's an awesome project. :-) I was browsing http://malsup.com/jquery/form/#code-samples http://malsup.com/jquery/form/#code-samples this morning and chanced upon a link thus: http://malsup.com/jquery/form/files.phps

[jQuery] Separating HTML special characters from their escaped counterparts in a textarea.

2008-07-20 Thread Scott Sauyet
This may not really be a jQuery question; if you can suggest someplace better to ask, please let me know. I have some HTML in a textarea that the user will need to be able to edit (eventually in FCK Editor.) This is stored in a DB as HTML, with some things that look like escaped XML start

[jQuery] .slice() a specific number of characters?

2008-07-20 Thread hubbs
I am wondering if it is possible to use the .slice() method to keep 6 characters on the end of a URL in a href attribute, then append a new URL to the beginning? Or is there a better method to do this?

[jQuery] Getting image src while using iepngfix

2008-07-20 Thread Samuel Vogel
Hey guys, I do have an image overlay running at: http://preview.ndoki.de/ It works like a charm in all browsers, except IE6. I noticed that it does not work, because the iepngfix script changes the src-attribute of the images, since my navigation is made up from transparent PNGs. But the jQuery

[jQuery] Announcing Cascade plugin

2008-07-20 Thread Mike Nichols
Hi all, I have had this plugin in use for a while and it is ready for the wild. This plugin originally was conceived to simply handle the canonical cascade requirement of select elements filtering other select element options, but has grown to deal with any similar behavior requirement . A demo

[jQuery] Re: How do I write a JQuery expression for this?

2008-07-20 Thread [EMAIL PROTECTED]
My bad. Here's the HTML. I would like to write an expression to apply a class to all the TD's that have .pdf as the last part of their innerHTML. div id=domRoot div id=folder0 style=display: block;/div div id=folder1 style=display: block;/div div id=folder2

[jQuery] Re: Using $.post with complex JSON structures

2008-07-20 Thread Mau
I am having the some problem... obviously, I'm trying to post different data, but structured the same way... and I'm also getting [object object] on PHP side... maybe if we bang our heads at same time to wall :) I'll let you know if make it through the wall On Jul 10, 10:07 am, lionstone

[jQuery] Re: .slice() a specific number of characters?

2008-07-20 Thread Karl Swedberg
sure, that would work just fine. something like this, maybe? : $('#somelink').attr({href: 'newprependedtext' + this.href.slice(-6)}); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 20, 2008, at 7:52 PM, hubbs wrote: I am wondering if it is possible

[jQuery] Re: How do I write a JQuery expression for this?

2008-07-20 Thread Karl Swedberg
Hi Dave, I'd do it like this: $('td').filter(function() { return (/\.pdf\s*$/).test($(this).text()) }).addClass('someclass'); --Karl Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 20, 2008, at 9:23 PM, [EMAIL PROTECTED] wrote: My bad. Here's the

[jQuery] Re: Minifying

2008-07-20 Thread Ariel Flesler
Dean Edward's Packer. http://dean.edwards.name/packer/ -- Ariel Flesler http://flesler.blogspot.com/ On 20 jul, 12:47, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I was curious what the jQuery guys use to minify their files?  I saw there are two big ones out there, JSMin and YUI Compressor and

[jQuery] Problems parsing posted array of objects

2008-07-20 Thread Mau
Hello, I have this on my client-side: script language=javascript type=text/javascript function BigAction(inputdata) { var url = 'index2.php'; $('#progressIndicator').show('fast', function () { $.post(url, inputdata, function(data) {

[jQuery] Re: jQuery.com Broken?

2008-07-20 Thread John Resig
All our static files are hosted on Amazon S3 - they had an outage earlier today. --John On Sun, Jul 20, 2008 at 4:43 PM, Kevin Pepperman [EMAIL PROTECTED] wrote: same here. no CSS. degrading gracefully. On Sun, Jul 20, 2008 at 3:46 PM, xwisdom [EMAIL PROTECTED] wrote: Hello, The website

[jQuery] Re: .slice() a specific number of characters?

2008-07-20 Thread hubbs
Perfect! Thank you very much! On Jul 20, 7:26 pm, Karl Swedberg [EMAIL PROTECTED] wrote: sure, that would work just fine. something like this, maybe? : $('#somelink').attr({href: 'newprependedtext' + this.href.slice(-6)}); --Karl Karl

[jQuery] How do I write a JQuery expression for this?

2008-07-20 Thread [EMAIL PROTECTED]
Within a span with class TreeView, there is a table. Within the table, there are TD's. I want to select the TD's whose content ends in .pdf. How would I go about writing an expression to, say, apply a class to only those nodes? Thanks for your help, - Dave

[jQuery] Re: How do I write a JQuery expression for this?

2008-07-20 Thread Yehuda Katz
I would strongly recommend against putting a table in a span. Karl's solution below is correct. You might also do :contains(.pdf) depending on what sort of text is in your td's. -- Yehuda On Sun, Jul 20, 2008 at 6:38 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Within a span with class