[jQuery] How to pass a jQuery object to PHP as an array

2008-11-02 Thread GrootBaas
Hi all, Thank you in advance for you help I have the following object ... console.log($('.users').select('.name')); How can I pass this object as an hidden form field back to my PHP controller as an array? Current code ... document.save_logs.table.value = value; document.save_log

[jQuery] Re: problem with jquery selector in IE

2008-11-02 Thread glowbal
To be more explicit, here is the relevant code: function displayURL(xml) { try { alert(xml); var result = $("url", xml).text(); alert(result); } catch (ex) { alert(ex); } } In the above code the alert

[jQuery] Re: Installation

2008-11-02 Thread Danny
Sounds like you are trying to use the file by double-clicking it in Windows. You don't have to do that; there's no "installation". It's ready to use. Include the line

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
Hi Klaus, I decided to use the jquery-database as you suggested. Works well, I just have one issue. My fire bug does display console.log($('.users') .select('.name')); with the correct values. But hoe do I break the object up into an array. Or how do I access the objects

[jQuery] Animate Issue - bouncing menu

2008-11-02 Thread benmanson
Hi, Hoping someone can help with this. This is my first jquery script and I am animating a menu item to move up and down (using absolute positioning) when hovered on/off. The problem I have is that the menu gets the bounces if you hover on the edge of the menu item frame or hover on and off too

[jQuery] problem with jquery selector in IE

2008-11-02 Thread glowbal
Hi, I have an jquery-ajax-enabled javascript script that runs just fine in FireFox. However, in IE 6, my script is failing. My ajax request returns the following string and passes it to a function to be processed. The string returned is: some valid url here This string is being constru

[jQuery] Re: Accordion

2008-11-02 Thread Frank J Ryan
Hi Olaf, I'll try that. Thanks, Frank On Nov 2, 2008, at 5:48 PM, Olaf Bosch wrote: Frankjr schrieb: Hi all, I am a js idiot, but I did manage to get a page up and working. My problem is that I want all accordions closed initially and can't seem to find the solution. (The first one is alwa

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-02 Thread Mike Alsup
> I know this off topic but I am searching for in the Jquery > documentation how to hook into the selection changed of a dropdownlist > to implement my ajax call, if you could point me in the right > direction I would be much appreciative. $('#mySelect').change(function() { // your code here

[jQuery] Re: event.preventDefault() seems to fail

2008-11-02 Thread Hullah
Ok, I see what you're saying now. But stopPropigation doesn't work in this case either. Looking at the code sample that I posted at the beginning, even if I add a e.stopPropagation() after the preventDefault() it still causes the form to submit.

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-02 Thread OutOfTouch
Hi Mike, A couple more questions. I know this off topic but I am searching for in the Jquery documentation how to hook into the selection changed of a dropdownlist to implement my ajax call, if you could point me in the right direction I would be much appreciative. Where can I view the api doc

[jQuery] Re: Trying to grasp basics of scrolling a TBODY

2008-11-02 Thread Jeffrey Kretz
Ken, Do you have a test case page online somewhere I could take a look at? I've successfully implemented a scrollTo-type function using offsets and rows, and if I can see the page you're working with I might be able to suggest something. JK From: jquery-en@googlegroups.com [mailto:[

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-02 Thread OutOfTouch
> No, the add2 demo shows a way to fetch one image at a time.  Cycle > provides the hooks to do whatever you need to do.  There are before/ > after callbacks and there is an addSlide method on the options object > which is passed into them.  But it's up to you to determine the best > approach for

[jQuery] Re: Installation

2008-11-02 Thread Kru
Hey there, The size is correct - 97.8kb is the jquery source which is generally used for development. When do you get the error 'window undefined' ? I suggest maybe also having a look at the tutorials to help get you started: http://docs.jquery.com/Tutorials Cheers On Nov 3, 10:47 am, minu <[

[jQuery] Re: Trying to grasp basics of scrolling a TBODY

2008-11-02 Thread Kenneth Downs
Dan Switzer wrote: Ken, I'm trying to grasp the basics of scrolling to a particular row in a TABLE. Let's say you've got a TABLE, with a TBODY that has a fixed height and overflow: scroll. It appears I ought to be able to use core functions like offset() and scrollTop(

[jQuery] Re: How to get Parameter in Get Biodata

2008-11-02 Thread ricardobeat
It's just a plain javascript function, where does jQuery enter? You just need to define the function (it it's not already defined): function openBIO('p1,p2,p3') { //do something with p1,p2,p3 } On Nov 2, 8:39 am, Titasix <[EMAIL PROTECTED]> wrote: > I have table that the column has one of th

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
Shawn, Do I need to have the code inside a $(document).ready(function() { function? On Oct 31, 5:45 pm, Shawn <[EMAIL PROTECTED]> wrote: > I *think* the following will get you started: > > $("#veh_odometer").children("tr").each( function () { > //'this' refers to the current tr > var addre

[jQuery] Re: reading values from HTML tables

2008-11-02 Thread GrootBaas
Hi Shawn ... Can not get this going ... $("#veh_odometer").children("tr").each( function () { Is "tr" another id that I have to specify within my HTML table? On Oct 31, 5:45 pm, Shawn <[EMAIL PROTECTED]> wrote: > I *think* the following will get you started: > > $("#veh_odometer").children("

[jQuery] Re: Trigger ajax event on iframe load

2008-11-02 Thread Nic Hubbard
Basically, I would like to have the functionality that the jQuery Form plugin uses for uploading files. When you click submit it fires and ajax event, even though it is not using ajax, then, when the iframe is loaded, the ajax success is trigged. Thanks. On Nov 2, 2:53 pm, Nic Hubbard <[EMAIL P

[jQuery] Re: Trigger ajax event on iframe load

2008-11-02 Thread Nic Hubbard
Hi Kru, I am wanting to use the load event (http://docs.jquery.com/Events/ load) to know when the iframe has been loaded, not load content into a div. #testFrame is the ID of my iframe. What I would like to do is use ajax events triggers to fake some ajax events, e.g. $.event.trigger('success'

[jQuery] Re: Accordion

2008-11-02 Thread Olaf Bosch
Frankjr schrieb: Hi all, I am a js idiot, but I did manage to get a page up and working. My problem is that I want all accordions closed initially and can't seem to find the solution. (The first one is always extended.) I thought 'all closed' was the default but apparently not. Here is the test

[jQuery] Re: How to load only one image at a time using JQuery Cycle Plugin?

2008-11-02 Thread Mike Alsup
> Maybe I am mistaken but this example looks to me like it would > eventually load all images into the page, what if you had a 100 > images? No, the add2 demo shows a way to fetch one image at a time. Cycle provides the hooks to do whatever you need to do. There are before/ after callbacks and

[jQuery] Installation

2008-11-02 Thread minu
Hello All I was trying to download and install Jquery . I am using the following link. http://code.google.com/p/jqueryjs/downloads/detail?name=jquery-1.2.6.js When i try to run this script i get an error.Also i am surprised to see the file size to be just 97.8 Kb. The error i get is 'Window is un

[jQuery] How to load only one image at a time using JQuery Cycle Plugin?

2008-11-02 Thread OutOfTouch
Hi, I am looking for some help on how to only have one image at a time in the page using an ajax call to get the images, or get all images using ajax, but when next or prev navs are clicked to only load the next or previous image by cycling thru a JavaScript array. Loading alot of images at once

[jQuery] 2 menus one vertical and another horizontal - In IE6 the horizontal menu floats UNDER vertical menu

2008-11-02 Thread Cris
I have 2 menus one is horizontally and another is vertically the problem is that the horizontal SUB MENUS does not float OVER the vertical menu in IE6 it floats under vertical menu so i do not see the sub menus of the horizontal menu in Firefox everything is ok - the horizontal sub menu floats

[jQuery] Re: Trigger ajax event on iframe load

2008-11-02 Thread Kru
Hey there, I hope I understand this right. Say you have a link with class mylink. Once clicked you want to load mypage.php into a frame with id testFrame. After everything has loaded you would like to trigger an alert with the message Hello. This would look something like the code below: $('a.m

[jQuery] Re: Problem with simplemodal bug?? error?

2008-11-02 Thread Enrique Garcia
I am still stucked with this error. Please anybody can give me some idea?? it is really important for me thanks Enrique On Oct 26, 11:48 pm, Enrique Garcia <[EMAIL PROTECTED]> wrote: > i have an error when calling twice a function inside iframe withsimplemodal. > With IE works ok With Firefox i

[jQuery] Re: Trying to grasp basics of scrolling a TBODY

2008-11-02 Thread Dan Switzer
Ken, I'm trying to grasp the basics of scrolling to a particular row in a > TABLE. > > Let's say you've got a TABLE, with a TBODY that has a fixed height and > overflow: scroll. > > It appears I ought to be able to use core functions like offset() and > scrollTop() to work out where a row is and

[jQuery] Re: jquery.validate & cascade/chained selects

2008-11-02 Thread Mike Nichols
Are you using the cascade plugin? On Oct 15, 1:47 pm, Migue <[EMAIL PROTECTED]> wrote: > Hi, im trying to use jquery.validate plugin in a form with  cascade/ > chained ajax selects. > Thatcascadeloading was bind to select's Change event. But now i have > conflicts with jquery.validate, i think it

[jQuery] Trigger ajax event on iframe load

2008-11-02 Thread Nic Hubbard
I am trying to trigger an ajax event when my iframe is loaded. I kind of understand the concept, but I am slightly confused. If I do get the even triggered after my iframe has loaded, what do I do to get the fake ajax event to use a function? $('#testFrame').load(function () { $.event.t

[jQuery] Re: Advanced table/grid - like donjon

2008-11-02 Thread vdhant
humm, i was hoping that someone might know of a plug-in that does this. As i know from looking through their js file for the grid, it’s not a trivial task to create it. On Nov 2, 7:36 pm, Quinode <[EMAIL PROTECTED]> wrote: > have you checked tablesorter or flexigrid ? > the other functions you me

[jQuery] Re: my first plugin

2008-11-02 Thread Rick Faircloth
Nice work, diego! Rick diego wrote: I've updated my plugin, i added: caption as option, thumbs_nav when image is zoomed, auto resize of images if bigger then window dimension. http://www.pirolab.it/pirobox/ Regards Diego On 29 Ott, 00:18, diego <[EMAIL PROTECTED]> wrote: Hi Microbe,

[jQuery] Re: jquery ui tabs - screen jumps to top when clicked

2008-11-02 Thread Ed
XS emailed me a solution. It worked!!! How to stop screen from jumping up when tab is clicked: Wrap the div that contains the tabs in a div with a fixed height. See example here: http://5bosses.com/examples/tabs/sample_tabs.html On Nov 1, 10:25 am, Ed <[EMAIL PROTECTED]> wrote: > Klaus, > > D

[jQuery] Re: jQuery Uploader Flash player 10 fix

2008-11-02 Thread Jörg Battermann
You've meant November, right? Just checking :) On Nov 1, 1:01 pm, "Gilles (Webunity)" <[EMAIL PROTECTED]> wrote: > I expect to release around 8 september > > On Oct 31, 2:09 pm, "Gilles (Webunity)" <[EMAIL PROTECTED]> wrote: > > > > > p.s. at this time, IE seems a bit buggy, have to fix that befo

[jQuery] Modal & Dialog Window (same as Prototype Window Class - PWC)

2008-11-02 Thread Jesus Manuel Olivas
I am been developing and CMS So far the app was build with mysql, jpa, java, jsf, richfaces using netbeans IDE (running over tomcat) The front end have some OS look using Prototype Window Class (PWC) http://prototype-window.xilinus.com/ and dock using interface fisheye http://int

[jQuery] Re: my first plugin

2008-11-02 Thread diego
I've updated my plugin, i added: caption as option, thumbs_nav when image is zoomed, auto resize of images if bigger then window dimension. http://www.pirolab.it/pirobox/ Regards Diego On 29 Ott, 00:18, diego <[EMAIL PROTECTED]> wrote: > Hi Microbe, i'm glad that you like my work, > today i

[jQuery] Re: Advanced table/grid - like donjon

2008-11-02 Thread Quinode
have you checked tablesorter or flexigrid ? the other functions you mention could be added with custom jquery code Dominique

[jQuery] How to get Parameter in Get Biodata

2008-11-02 Thread Titasix
I have table that the column has one of the links subject title above,how jQuery handle it? thanx

[jQuery] [validate] How to display validation error messages in a tooltip? JORN

2008-11-02 Thread Kenet
Jorn, Back in April of 2007 you had a discussion on your comments section for your ToolTip Plugin, here's a quote of that conversation. OSCAR 24. April 2007 |10:55 Add tooltip to validation. It is posible to add a tooltip in or

[jQuery] [validate / tooltip] How to display validation error messages in a tooltip? JORN

2008-11-02 Thread Kenet
Jorn, Back in April of 2007 you had a discussion on your comments section for your ToolTip Plugin, here's a quote of that conversation. ___­­ __ OSCAR 24. April 2007 |10:55 Add tooltip to validation. It is posible

[jQuery] [tooltip] + [validate] How to display validation error messages in a tooltip? JORN

2008-11-02 Thread Kenet
Jorn, Back in April of 2007 you had a discussion on your comments section for your ToolTip Plugin, here's a quote of that conversation. ___­ __ OSCAR 24. April 2007 |10:55 Add tooltip to validation. It is posible

[jQuery] [validate]/[tooltip] How display validation error messages in a tooltip. JORN

2008-11-02 Thread Kenet
Jorn, Back in April of 2007 you had a discussion on your comments section for your ToolTip Plugin, here's a quote of that conversation. _ OSCAR 24. April 2007 |10:55 Add tooltip to validation. It is posible to a

[jQuery] [tooltip] How to display validation error messages in a tooltip? JORN

2008-11-02 Thread Kenet
Jorn, Back in April of 2007 you had a discussion on your comments section for your ToolTip Plugin, here's a quote of that conversation. OSCAR 24. April 2007 |10:55 Add tooltip to validation. It is posible to add a tooltip in or