[jQuery] Re: form plugin and a progress bar

2008-09-04 Thread andrea varnier
On 4 Set, 14:21, Giovanni Battista Lenoci [EMAIL PROTECTED] wrote: Hi andrea, it depends on what server side language you are using. Since you're italian I think this link can help you understand how to work with the apc extension for doing it in php:

[jQuery] Re: selectors

2008-09-04 Thread seo++
Thank you Mike. if I need the Dom node and jQuery object on the same function should I give each different variables or is there a workaround ? On Sep 3, 6:35 am, Michael Geary [EMAIL PROTECTED] wrote: Imagine that you have an array: var a = [ 'a', 'b', 'c' ]; Now you can call array methods

[jQuery] Re: selectors

2008-09-04 Thread Mike Alsup
Imagine that you have an array: var a = [ 'a', 'b', 'c' ]; Now you can call array methods on the array:    var t = a.join();  // 'a,b,c' But what happens if you call an array method on one of the *elements* of the array?    var x = a[0].join(); That's an error, because a[0] is a

[jQuery] Re: form plugin and a progress bar

2008-09-04 Thread Mike Alsup
what I am trying to do is a file-upload form that uses ajax (and so I'm using the form plugin) and that shows a progress bar while uploading. I've tried many solutions that I found over the internet but none seemed to work. possibly I am making mistakes somewhere in the process. question

[jQuery] Filter based on width attribute

2008-09-04 Thread jhead
I am wanting to turn all TD tags, that have width=65%, into links, based on the tag text, when the page loads. I don't have access to change the HTML itself. I have gotten part way there, but have been unable to get the filter to work: [code] script language=JavaScript

[jQuery] Calling/forcing hover()

2008-09-04 Thread Cerebral
Hi, is there a way to directly call the hover() or mouseover event ? I know I could use a separate function as the parameter but what I need is to trigger the hover event on my selected element, much like I can force the click event by writing something like $(elm).click(); in that case the click

[jQuery] Re: how to and block ui

2008-09-04 Thread Mike Alsup
I'd like to use block ui to delay access clicking on links until page has loaded completely. The examples I've seen all include the push of a button. I need the overlay to start as soon as early as possible even can anyone please point me in the right direction? Thanks a bunch. I think I

[jQuery] Re: Filter based on width attribute

2008-09-04 Thread [EMAIL PROTECTED]
Try to use: $(td[width=65%]) http://docs.jquery.com/Selectors here you can read about all the selectors. On 5 Sep., 02:17, jhead [EMAIL PROTECTED] wrote: I am wanting to turn all TD tags, that have width=65%, into links, based on the tag text, when the page loads. I don't have access to

[jQuery] Please examine my code or tell me why it may not be working.

2008-09-04 Thread Ray
I downloaded the jquery cycle plugin from http://malsup.com/jquery/cycle/ and renamed it jquerycycle.js. I made minor changes to the images but kept everything else pretty much in tact. I didn't touch the javascript file except for renaming it and it is not working. HELP! I have an external

[jQuery] .ajax POST question, script stops.

2008-09-04 Thread [EMAIL PROTECTED]
Hello, This is my first week programming in Javascript and more specifically, jQuery. I'm working on a nice little fun project to kinda get my hands dirty. I have a page that has a variety of roll over divs, which are to turn the color the users is select, if they dont click it *should* turn it

[jQuery] Re: Please examine my code or tell me why it may not be working.

2008-09-04 Thread Ryura
Looks like you never included the actual jQuery file, only the plugin. On Sep 4, 9:21 pm, Ray [EMAIL PROTECTED] wrote: I downloaded the jquery cycle plugin fromhttp://malsup.com/jquery/cycle/ and renamed it jquerycycle.js. I made minor changes to the images but kept everything else pretty

[jQuery] Re: Please examine my code or tell me why it may not be working.

2008-09-04 Thread Ray
Yeah... after I made the post I continued to try to figure things out. I'm new to javascript and maybe I'm starting out over my head. So I went to jquery.com and downloaded the 1.2.6 version file. It now displays properly, one image on top of another, but still no transition at all. On Sep 4,

[jQuery] Re: Tablesorter 2.0.3 - Sorting af column of checkboxes (resorting)

2008-09-04 Thread MorningZ
When you try to sort the column again row C and D should stay together at the top or bottom, but they don't No, no they shouldn't look into the code of the tablesorter.js code, it's storing the values/ text of the td's value right there in the client on the wiring up of the plugin, and it

[jQuery] Re: jQuery test suite on new Google Chrome browser

2008-09-04 Thread timothytoe
I don't think many read language specs, but I've heard over and over (in books and online) that you can't rely on the order that you get when you use in to set through keys. I thought that was fairly well known. Nothing in the syntax hints that you'd get them in a certain order. However,

[jQuery] Submit a Form (Search Results)

2008-09-04 Thread LJohnny
What I want to do is have a text field and a search button and then get the results in a pop-up window just like the ones at http://malsup.com/jquery/block/#demos Like, users type in their query and then push submit, then the sub- window opens and results are shown there. I'm not sure if this

[jQuery] Need Simplest Ajax

2008-09-04 Thread aspiring_ajaxer
Hello all, I'm new to JavaScript and jQuery although I have been learning for a couple of weeks now but still can't wrap my head around the programming this kind of stuff... I'll basically post my HTML below and explain to you what I need and where I am stuck. Thank you for reading! Okay, So I

[jQuery] Re: Calling/forcing hover()

2008-09-04 Thread Nathan Hammond
Try $(elem).trigger('hover'); or $(elem).trigger('mouseenter'); and see if that works out for you. Nathan Hammond On Sep 4, 7:50 pm, Cerebral [EMAIL PROTECTED] wrote: Hi, is there a way to directly call the hover() or mouseover event ? I know I could use a separate function as the parameter

[jQuery] Re: Simple click event

2008-09-04 Thread byron
cool. thanks. On Sep 4, 3:03 pm, Karl Swedberg [EMAIL PROTECTED] wrote: yep. you got it. :) --Karl Karl Swedbergwww.englishrules.comwww.learningjquery.com On Sep 4, 2008, at 8:46 AM, byron wrote: That worked well. Thank you. So in pseudocode this essentially says..

[jQuery] Re: Need Simplest Ajax

2008-09-04 Thread Jack Killpatrick
I think this will work for you. It uses jquery's data function: http://docs.jquery.com/Internals/jQuery.data style type=text/css .current { font-weight:bold }; /style script type=text/javascript $(function() { $('#nav a').each(function(i,o){ // loop over

[jQuery] Re: Stumped by AJAX and events

2008-09-04 Thread Jack Killpatrick
Sounds like you might having a caching issue. Try these: once: $.ajaxSetup({cache:false}); // global setting to prevent caching then do your $.get's as you have them. Or: append a timestamp to your get url: $.get(recipients.xml? + new Date().valueOf().toString(), - Jack JDawson wrote: I

[jQuery] Re: each() odd behavior

2008-09-04 Thread Michael Geary
I don't see anything obviously wrong with your code, and I can't imagine how either of the uses of this in the code would get the href attribute as this. Is the code you showed called inside a ready function - either $(document).ready() or the shorter form shown below? If that's not the problem,

[jQuery] Re: Filter based on width attribute

2008-09-04 Thread Michael Geary
I think you're missing some [] in your filter selector: $('td').filter('[width=65%]').click... Also, I strongly recommend using single quotes instead of double quotes for all your JavaScript strings. As you can see, it eliminates the need for the backslash escaping in the filter selector,

<    1   2