[jQuery] Re: jEditable selects - Adding/binding events?

2008-03-25 Thread dgt
Hello Mika, thankyou very much for your reply >Basically display something when "onchange" is triggered by select? That was it, so when the user scrolls through the options in the select, a DIV is updated (onchange etc) I sorta did this using the 'callback' parameter, but as you can imagine,

[jQuery] jEditable selects - Adding/binding events?

2008-03-24 Thread dgt
Hey all, I have the following jEditable which allows a user to change their mood: $(".mood-selector").editable("/user/mood", { data : "{'happy':'happy','excited':'excited','lucky':'lucky','loving':'loving','selected':''}", type : "select", submit : "OK" }); This works gre

[jQuery] Re: Drupal Form + jQuery Forms Plugin + File Uploads (Drupallers & jQuery gurus please)

2007-10-16 Thread dgt
m plugin handles file uploads just fine (using an IFrame). > > @dgt: Can you post a simplified sample page? > > > ajaxForm uses Ajax to send the data (XMLHttpRequest), but XMLHttp does > > NOT support file uploading, so the way to send a file (image or > > whatever) is to use an iframe.

[jQuery] Drupal Form + jQuery Forms Plugin + File Uploads (Drupallers & jQuery gurus please)

2007-10-15 Thread dgt
It was difficult to decide where I should post this. I think the issue is with jQuery though, I'm certainly no pro with jQuery, having only a few months experience. Let me explain my problem. I'm using a form which has a file upload, and also sends standard text data. This form I wish to be aja

[jQuery] Help with jquery ajax

2007-10-07 Thread dgt
Hey guys I'm new to jquery here! I'm using this code to load an html page into a div: function getPage(thePage){ $("#pageLoader").ajaxStart(function(){ $("#pageLoader").append(''); }); $.ajax({ url: thePage, cache: false, html: true, global: true, success: function(html){