[jQuery] Re: jqModal via POST ?

2007-05-02 Thread Brian Cherne
Thanks for taking the time to set me straight! I swear the other day I found a few web sites saying POST was more secure than GET... But today I found the w3c page that talks about choosing between GET/POST and no mention of one being more secure (if used over SSL). http://www.w3.org/2001/tag/doc

[jQuery] Re: jqModal via POST ?

2007-05-01 Thread Juha Suni
Just a note here, https (ssl) also protects GET parameters in the URI. POST is not required for that, although is often preferred especially when there is more data. AFAIK the SSL layer kicks in before the request headers are sent (which include the params). This is the reason why you generally

[jQuery] Re: jqModal via POST ?

2007-04-30 Thread Brian Cherne
I basically have a ton of modal dialogs, some will require GET, some will require POST, and my initial thinking is to treat them all the same (send them all to jqModal). Then hack the plug-in (add a setting/configurable option) to strip params from the HREF and send them via POST. It wouldn't be t

[jQuery] Re: jqModal via POST ?

2007-04-30 Thread Erik Beeson
Sure, just use ajax, load the result into a div, and show the div with jqModal. --Erik On 4/30/07, Brian Cherne <[EMAIL PROTECTED]> wrote: Has anyone implemented jqModal (or something like it) via the POST method? I really enjoy how simple jqModal is for calling modal dialogs and I want to u