[jQuery] Re: jQuery and JSON - newbie!

2008-05-02 Thread Dave Probert
Glad I could help :) Cheers, Dave On May 2, 6:35 pm, eid <[EMAIL PROTECTED]> wrote: > Hi Dave, > > it worked great with a little bit of modification. > > Thank you very, very much! And I even learned something new today > then :) > > Thanks again > eid &

[jQuery] Re: jQuery and JSON - newbie!

2008-05-02 Thread Dave Probert
Hi eid, I've taken a look at what you are trying to do and I think there are two aspects that need to be 'corrected'. 1.) In the JSON, there is no need for an array of items - remove the [ & ] after 'items'. items is then an object with elements called 'lanceOfMitraDivinity', 'wrathOfMitraDivi

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
Hi Guys (again!), Tracked down the 'permission denied' part - I forgot to set the 'sandboxRoot' in the iframe to 'http://localhost/'. That stopped the error message, but now I get nothing! Nothing at all - no errors, no div content change, nothing. I tested that jQuery is actually working by a

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
Hi Guys, I've just installed Aptana with the AIR plugin. Nice program - better than when I previously tried it. The generated AIR project test file works fine as an AIR app, but modifying it just slightly to have jQuery.1.2.3 used and adding this code (below) to the auto-created 'forApplication

[jQuery] Re: Adobe AIR v1.0 and jQuery Ajax calls

2008-03-02 Thread Dave Probert
nt).ready() should work. > salvatore > > - Original Message - > From: "Dave Probert" <[EMAIL PROTECTED]> > To: "jQuery (English)" > Sent: Sunday, March 02, 2008 8:24 AM > Subject: [jQuery] Adobe AIR v1.0 and jQuery Ajax calls > > > Hi All, >

[jQuery] Adobe AIR v1.0 and jQuery Ajax calls

2008-03-01 Thread Dave Probert
Hi All, Has anyone done any work with the release version 1.0 of AIR and jQuery - specifically using the jQuery Ajax call (in a sandbox page) ? I've tried it myself in many ways, but just can't seem to get it to actually get the data. The page I have done works perfectly in the browser, and the

[jQuery] New Plugin Pages

2007-07-31 Thread Dave Probert
Any chance you lovely developers of the new plugin site could either: Fix the 'Browse by Date' or Remove 'Browse by Date' as an option. as it doesn't work. Please.

[jQuery] Re: Anything similar to IE's table.moveRow in jquery?

2007-07-31 Thread Dave Probert
Or for more detailed movement: $('tr:eq(3)').insertBefore('tr:eq(1)'); or $('tr:eq(2)').insertAfter('tr:eq(5)'); Note: the numbers are the row count - beginning at 0 (zero) for the first row. Lookup the jquery :xxx qualifiers for more options. On Jul 31, 4:16 am, Mike Miller <[EMAIL PROTECTE

[jQuery] Re: Multiple Interface Resizables

2007-07-18 Thread Dave Probert
Assuming you mean the Interface resizables, there is no way yo do so without recoding the library. It hardcodes the ID's for the resize blobs - this is Very Bad. The only way I could get around this was to add or remove the resize blobs when I click (and/or choose to edit) on an item. But this

[jQuery] Main jQuery Site Problems

2007-07-06 Thread Dave Probert
FAO: John, et al. Main jQuery Site seems to have a problem on many pages - message at the top claiming that "jQuery JavaScript Library has a problem" and continues to load the main content over this (sometimes!) Some of the tutorials, etc don't actually load. Just a heads up :) Cheers Dave

[jQuery] Re: What would be the best way to accomplish this?

2007-07-04 Thread Dave Probert
Sorry mate, your link doesn't work. On Jul 4, 2:09 pm, "Armand Datema" <[EMAIL PROTECTED]> wrote: > http://nokiko.howardshome.com/jqhowto.gif > > I am looking for the best way to create the above design. You have a > title and a summary, you only get to see one line of the summary and > need to

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-04 Thread Dave Probert
Sorry mate, but you are breaking the rules of HTML (as laid down by higher powers than us), as was mentioned above - ID's are individual items on a page - There should NEVER be more than one with the same ID. These are Unique ID's. You will need to go back to your original design and change it s