[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread RobG
On Jun 18, 2:57 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > As Sigmund Freud might have said, "It's all in your head"... but he wasn't > talking about html > > very little in the html head is normal. meta's are read from the head (by > the server, not the client) and sent as headers! > > So it's to

[jQuery] Re: problem with animate()...

2007-06-17 Thread John Resig
Byron - You should give jQuery 1.1.3a a try. This was one of the nasty bugs that we were able to resolve in it: http://code.jquery.com/jquery-1.1.3a.js Let me know if that code helps to solve your problem. --John On 6/17/07, Byron <[EMAIL PROTECTED]> wrote: Thanks, I tried setting it in th

[jQuery] Re: Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-17 Thread [EMAIL PROTECTED]
when i say "make" = copy and past from api page (jquery.bassistance.de/ api-browser/ ). reformat. etc.. so was not too hard of task.

[jQuery] Cheat Sheet for jQuery v1.1.2 (PDF format) grab here.

2007-06-17 Thread [EMAIL PROTECTED]
Hey, long time jquery fan, I got time today to make One page Cheat Sheet (overview list of function in jquery library ) You know what to do with it, print it, tape it, type it, enjoy it. Download / view at PDF : www.n-bp.com/jquery_cheat_sheet/v112/jQuery_cheat_sheet_v1-1-2.pdf cheers, Nilesh

[jQuery] Re: problem with animate()...

2007-06-17 Thread Byron
Thanks, I tried setting it in the call bak like so.. ... $("#imageBoxInside").animate({left: sLeft}, 'slow', function() { wait = 0; var left = parseInt($("#imageBoxInside").css("left")); if (left < 0 && left > -(imageSize * transitionSize)) { $("#imageBoxInside").css("left",

[jQuery] Re: getScript problem

2007-06-17 Thread Mike Alsup
jQuery's getScript implementation uses ajax and therefore you can not make cross-domain requests. But Michael Geary has a nice JSON plugin: http://mg.to/2006/01/25/json-for-jquery Mike On 6/17/07, Jacky <[EMAIL PROTECTED]> wrote: I have tried to test on the twitter json and so I use the getS

[jQuery] getScript problem

2007-06-17 Thread Jacky
I have tried to test on the twitter json and so I use the getScript to do that. It works in IE but not Firefox. The js console error shows: [Exception... "' P ³å|ë method XMLHttpRequest.open' when calling method: [nsIDOMEventListener::handleEvent]" nsresult: "0x8057001e (NS_ERROR_XPC_JS_THREW_STR

[jQuery] Re: problem with animate()...

2007-06-17 Thread Erik Beeson
It doesn't seem to happen consistently... On 6/17/07, Erik Beeson <[EMAIL PROTECTED]> wrote: Having no actual idea and just venturing a guess, I'd say maybe there's a compounding rounding error or something? Maybe try setting the correct value after the animation has completed (via a callback)

[jQuery] Re: problem with animate()...

2007-06-17 Thread Erik Beeson
Having no actual idea and just venturing a guess, I'd say maybe there's a compounding rounding error or something? Maybe try setting the correct value after the animation has completed (via a callback)? --Erik On 6/17/07, Byron <[EMAIL PROTECTED]> wrote: Hi all, this is my first post to this

[jQuery] AJAX get into a persistent variable?

2007-06-17 Thread Brad Perkins
I'm working on a page that has a form that is dynamically generated using jQuery. The form isn't built in one pass but progressively based on user actions. Prior to submit the form may contain dozens of select menus with varying option content. The problem is that the select menu options contain

[jQuery] problem with animate()...

2007-06-17 Thread Byron
Hi all, this is my first post to this list and my first attempt at porting a script to jquery, Ok so anyway... I've made this smooth image-list slider : http://dev.byron-adams.com/jquery/slider.html it was originally using prototype & scriptaculous (130kb+) so it works pretty well, except for

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Sean Catchpole
On 6/17/07, Glen Lipka <[EMAIL PROTECTED]> wrote: I also got an error in IE7 on Vista. Strange one. Line 5. "Can't move focus to the control because it is invisible, not enabled or of a type that does not accept the focus." @Glen This error is from Google when I load it in the iframe, I may c

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread ThePengwin
i doubt they would be of any use, espically since it will be the only platform with that kind of function. On Jun 18, 5:47 am, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > I'm guessing a poke = a click, and a drag is a drag what will the double > finger gestures be ? >

[jQuery] Re: How to terminate each befor full iteration

2007-06-17 Thread Mike Alsup
Return false to stop the iteration loop. Mike On 6/17/07, wyo <[EMAIL PROTECTED]> wrote: I'd like to terminat (beak) the iteration in the following code if a value is emtpy. Is that somehow possible? var okay = true; $('.input_required').each (function (i){ if ($(this).val() == "")

[jQuery] Re: Removing injected elements

2007-06-17 Thread Karl Swedberg
Hi Michael, You could do something like this (untested): var $inner = $('#container').html(); $('#container').after($inner).remove(); --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jun 17, 2007, at 5:03 PM, Michael Heilemann wrote: Hey all, Alrigh

[jQuery] sortable:how to with tables?

2007-06-17 Thread Mark
sorry for the late reply but i`m having the exact same issue here. anyone willing to help us out with this? 2007/3/1, Stefan Kilp [sk-software] < [EMAIL PROTECTED]>: hi, i tried to test interface sortables with a table structure which doesn't realy work. is there a chance to get it running wit

[jQuery] Removing injected elements

2007-06-17 Thread Michael Heilemann
Hey all, Alright, so its fairly easy to inject content with jQuery, like for instance with .wrap(). But how do you remove those injected elements again, without destroying the underlying content? .remove() will remove anything contained within an element, but what I need is something that only re

[jQuery] Re: Getting the absolute position of an element

2007-06-17 Thread Michael Schuerig
On Sunday 17 June 2007, Mike Alsup wrote: > Michael, > > Take a look at the dimensions plugin: > > http://jqueryjs.googlecode.com/svn/trunk/plugins/dimensions/jquery.di >mensions.js Thanks, that's exactly what I've been looking for. I must have missed it, when searching the plugins. Michael --

[jQuery] Re: rangeValue in Jorn Form Validation Plugin - zip validation

2007-06-17 Thread Web Specialist
Man, I love you! ;-) Works!!! Cheers 2007/6/17, Jörn Zaefferer <[EMAIL PROTECTED]>: Web Specialist wrote: > Hi, > > I'll want to validate a range in US(Los Angeles) zip field using great > Jorn's Form Validation Plugin. For example: > > - how to ensure users enter only zip inside the range 9

[jQuery] Re: rangeValue in Jorn Form Validation Plugin - zip validation

2007-06-17 Thread Jörn Zaefferer
Web Specialist wrote: Hi, I'll want to validate a range in US(Los Angeles) zip field using great Jorn's Form Validation Plugin. For example: - how to ensure users enter only zip inside the range 902??- and 905??-??? I'd try a custom method with a bit regex magic: /90[2-5]\d\{2}-\d{4}

[jQuery] Using Sortables with tables

2007-06-17 Thread Andy Matthews
I have a CMS that I'm building for a client. There's going to be a list of items in one portion of the CMS which will likely get rearranged on a regular basis. Obviously I could simply have them change their order one at a time via a simple text box. I'd like to give them something unexpected thou

[jQuery] rangeValue in Jorn Form Validation Plugin - zip validation

2007-06-17 Thread Web Specialist
Hi, I'll want to validate a range in US(Los Angeles) zip field using great Jorn's Form Validation Plugin. For example: - how to ensure users enter only zip inside the range 902??- and 905??-??? Cheers

[jQuery] Re: How to terminate each befor full iteration

2007-06-17 Thread Matt Stith
if (!okay) return; maybe? :P On 6/17/07, wyo <[EMAIL PROTECTED]> wrote: I'd like to terminat (beak) the iteration in the following code if a value is emtpy. Is that somehow possible? var okay = true; $('.input_required').each (function (i){ if ($(this).val() == "") { okay = fal

[jQuery] Re: Validate RC2 Preview: Remember The Milk Signup

2007-06-17 Thread Jörn Zaefferer
R. Rajesh Jeba Anbiah wrote: To be honest, having inspired by validation plugin, I thought of hacking an adopter for it. But, later I found that it's too un- intuitive to try to bend CakePHP rules for validation plugins; it will be just easy to dump CakePHP rules in JSON and write a simple j

[jQuery] How to terminate each befor full iteration

2007-06-17 Thread wyo
I'd like to terminat (beak) the iteration in the following code if a value is emtpy. Is that somehow possible? var okay = true; $('.input_required').each (function (i){ if ($(this).val() == "") { okay = false; } if (!okay) ??? }) O. Wyss

[jQuery] Re: encodeURIComponent localized for custom encoding

2007-06-17 Thread oscar esp
Ok I will try to put it into public server. On 16 jun, 19:22, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > form plugin uses the same encoding that ajax will use... it's ajax... with > the 2 lines to override it should work... > > I would like to see a live page, I can peek at the headers with firebug to >

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Ⓙⓐⓚⓔ
I'm guessing a poke = a click, and a drag is a drag what will the double finger gestures be ? On 6/17/07, Matt Stith <[EMAIL PROTECTED]> wrote: Yeah, iphone runs a full version of safari, so just a safari check should be fine On 6/17/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED] > wrote: > > hopefully w

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Matt Stith
Yeah, iphone runs a full version of safari, so just a safari check should be fine On 6/17/07, Ⓙⓐⓚⓔ <[EMAIL PROTECTED]> wrote: hopefully we won't need to care that it's an iPhone! We'll know more on the 29th On 6/17/07, Bob den Otter < [EMAIL PROTECTED]> wrote: > > > maybe jQuery may add a new

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Alexandre Plennevaux
I find this type of comment to be crucial: nothing beats peer review, especially with experts such as Mike ! thanks Mike ! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: dimanche 17 juin 2007 20:04 To: jquery-en@googlegroups

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Ⓙⓐⓚⓔ
hopefully we won't need to care that it's an iPhone! We'll know more on the 29th On 6/17/07, Bob den Otter <[EMAIL PROTECTED]> wrote: maybe jQuery may add a new function, $.browser.isiPhone, for further, since iPhone allows developers do more in its safari... :) This should be as easy as

[jQuery] Re: Getting the absolute position of an element

2007-06-17 Thread Mike Alsup
Michael, Take a look at the dimensions plugin: http://jqueryjs.googlecode.com/svn/trunk/plugins/dimensions/jquery.dimensions.js Mike On 6/17/07, Michael Schuerig <[EMAIL PROTECTED]> wrote: I'm looking for a "jQuery-native" way to get the absolute position of an element; something like Pro

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Mike Alsup
Sean, That's a nice lightweight tabs implementation. One thing I would suggest is to refrain from using keywords (return) as option keys. I rarely ever use quotes around my keys so I know I would be annoyed if a plugin imposed this on me. :-) Also, your doc-ready handler can be simplified:

[jQuery] Re: Refreshing event registration

2007-06-17 Thread Arne-Kolja Bachstein
Hi Mike, thanks for this, this solution sounds quite plausible and is a good way to handle it at the moment, so thank you again! Best regards Arne > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Mike Alsup > Sent: Sunday, June 17, 2007

[jQuery] Getting the absolute position of an element

2007-06-17 Thread Michael Schuerig
I'm looking for a "jQuery-native" way to get the absolute position of an element; something like Prototype's Position.cumulativeOffset(element) or YUI's YAHOO.util.Dom.getXY(element). Is there anything like this or do I have to borrow from the other libs? Michael -- Michael Schuerig mailto:

[jQuery] How to modify Q & A or Topic & Expansion CSS

2007-06-17 Thread [EMAIL PROTECTED]
I got this code from scriptaculos and it toggles display of the answer pat then the question part is clicked. Javascript $(document).ready(function () { $ ('div.faqitem').find('div.answer').hide().end().find('div.question').click(function() { $(this).next().slideToggle(); });

[jQuery] Re: jQuery may add $.browser.isiPhone

2007-06-17 Thread Bob den Otter
maybe jQuery may add a new function, $.browser.isiPhone, for further, since iPhone allows developers do more in its safari... :) This should be as easy as adding a line with iphone: /iphone/.test(b), inside jQuery.browser = { }.. But, if it's added to the core: please, please name i

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Robert Wagner
2007/6/17, Sean Catchpole <[EMAIL PROTECTED]>: On 6/17/07, Robert Wagner <[EMAIL PROTECTED]> wrote: > it (the link you mentioned) behaves _strange_ in safari. (2.0.4) it > hangs a few seconds an then it shows the tabs (sometimes). > -robert I'll try to look into this Robert, but I don't have a

[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread Ⓙⓐⓚⓔ
the head is messy! On 6/17/07, Michael Andreas <[EMAIL PROTECTED]> wrote: Snap, I know those metas are evil! That's a good explanation. Thank you for the response, Jake. -Michael- On Jun 17, 11:57 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > As Sigmund Freud might have said, "It's all in your

[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread Michael Andreas
Snap, I know those metas are evil! That's a good explanation. Thank you for the response, Jake. -Michael- On Jun 17, 11:57 pm, "Ⓙⓐⓚⓔ" <[EMAIL PROTECTED]> wrote: > As Sigmund Freud might have said, "It's all in your head"... but he wasn't > talking about html > > very little in the html head i

[jQuery] Prevent Firefox password manager to popup on invalid forms

2007-06-17 Thread Jörn Zaefferer
Hi, I'm having troubles to prevent Firefox' password manager to popup on invalid forms. The problem is that it opens when the user clicks submit, and afterwards the form is marked invalid, possibly even including an invalid password. I haven't managed to produce a reliable test yet, so I ho

[jQuery] Re: calling php file into a div

2007-06-17 Thread webgodjj
I'm getting this error with fire bug... "missing : after property id" $("#show_results").load("index.php",{"id",$(this).attr("id")});\n On Jun 15, 1:59 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > try: > > $(function(){ > $("a").click(function(){ > $("#show_results").load("index.p

[jQuery] Re: calling php file into a div

2007-06-17 Thread spinnach
it should be: $("#show_results").load("index.php",{"id" : $(this).attr("id")}); webgodjj wrote: I'm getting this error with fire bug... "missing : after property id" $("#show_results").load("index.php",{"id",$(this).attr("id")});\n On Jun 15, 1:59 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote

[jQuery] Re: calling php file into a div

2007-06-17 Thread webgodjj
I'm getting this error with fire bug... "missing : after property id" $("#show_results").load("index.php",{"id",$(this).attr("id")});\n On Jun 15, 1:59 pm, "Jake McGraw" <[EMAIL PROTECTED]> wrote: > try: > > $(function(){ > $("a").click(function(){ > $("#show_results").load("index.p

[jQuery] Re: Refreshing event registration

2007-06-17 Thread Mike Alsup
Arne, When jQuery 1.1.3 comes out you will be able to use Brandon Aaron's Behavior Pluigin[1] to manage this behavior automatically. Until then you can do it manually. They key is to only bind the elements that have not been previously bound. If, for example, you're using ajax functionality t

[jQuery] Re: How to disable (or properly remove) meta refresh?

2007-06-17 Thread Ⓙⓐⓚⓔ
As Sigmund Freud might have said, "It's all in your head"... but he wasn't talking about html very little in the html head is normal. meta's are read from the head (by the server, not the client) and sent as headers! So it's too late for you to do anything... but at least you know how long unti

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread BKDesign Solutions
This is awesome! Very welcome addition, well done and very usable. Nice for those tight areas also, would be perfect on a sidebar or wherever Bruce P - Original Message - From: "Sean Catchpole" <[EMAIL PROTECTED]> To: Sent: Sunday, June 17, 2007 2:54 AM Subject: [jQuery] ANNOUCE: i

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Glen Lipka
Good chance to see if Safari is the same on thee Mac v. PC. I also got an error in IE7 on Vista. Strange one. Line 5. "Can't move focus to the control because it is invisible, not enabled or of a type that does not accept the focus." Otherwise, cool plugin. :) Glen On 6/17/07, Sean Catchpole

[jQuery] Re: ANN: jQuery Paris Meetup

2007-06-17 Thread John Resig
It's going to be pretty casual - I'll probably give a talk on jQuery 1.2, the direction of the project, etc. If anyone has any questions, I'll be happy to try and answer them. That's what I know about, on my end. The SPIP developers will probably be organizing some stuff too. (They run the Frenc

[jQuery] Re: vignet : another great jquery powered site

2007-06-17 Thread tzmedia
Just posted a review for teamViget.com: http://www.stylegala.com/archive/team_viget.htm Any comments and insights from the dedicated jQ'ers out there would be great ;) Ty - "wish my name was Jay Query" G. On Jun 11, 11:26 am, "Sam Sherlock" <[EMAIL PROTECTED]> wrote: > http://www.teamviget.com/ >

[jQuery] Re: Dealing with Non existent nodes

2007-06-17 Thread Scottus
thanks this worked well. I guess the key the if statement is testing for truth of a statement that anything that makes it false counts as false even if its non existence. o = document.getElementsByTagName('title')[0]) && nice code. thanks On 6/17/07, RobG <[EMAIL PROTECTED]> wrote: On Jun

[jQuery] Re: ANN: jQuery Paris Meetup

2007-06-17 Thread Olivier Percebois-Garve
Is there some more infos about what is planned there ? John Resig wrote: When: Sunday, June 24, 2007 - 10:30 AM Where: Hotel Helder Opera 4, Rue du Helder Paris, Île-de-France 75009 About: This is a meet up for those that use and are interested in the jQuery JavaScript Library. We'll be meet

[jQuery] How to disable (or properly remove) meta refresh?

2007-06-17 Thread Michael Andreas
Hi group, just a quick question here. Does anyone know how can I disable the refresh effect of the following meta element: ? I've tried $("[EMAIL PROTECTED]").remove(); but it didn't work. I'm so hopeful of a solution. Thank you. -Michael-

[jQuery] Re: jQuery Ajax pagination

2007-06-17 Thread Web Specialist
Thanks Steve. Looks very interesting. Do you can share the SQL tblUsers script? ID is an identity field in that table? Do you found any bottlenecks for that SQL paginations approach? Please look this article for pagination in SQL Server: http://www.4guysfromrolla.com/webtech/042606-1.shtml Thanks

[jQuery] Refreshing event registration

2007-06-17 Thread Arne-Kolja Bachstein
Hi there, I am adding input elements using jQuery and these input elements shall react on globally registered event handlers ( $(".myelement").click() ). But when inserting them via jQuery, they do not react on these rules, so I think I have to somehow re-register the events after adding them d

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Sean Catchpole
On 6/17/07, Robert Wagner <[EMAIL PROTECTED]> wrote: it (the link you mentioned) behaves _strange_ in safari. (2.0.4) it hangs a few seconds an then it shows the tabs (sometimes). -robert I'll try to look into this Robert, but I don't have access to a mac atm, do you think the windows version

[jQuery] Re: jQuery Ajax pagination

2007-06-17 Thread Steve Blades
I have a (currently) six part tutorial on paging the ExtJS DataGrid component, with JQuery, on my blog: http://blog.cutterscrossing.com/index.cfm/My-First-ExtJS-DataGrid Steve 'Cutter' Blades Adobe Certified Expert Advanced Macromedia ColdFusion MX 7 Developer http://blog.cutterscro

[jQuery] jQuery may add $.browser.isiPhone

2007-06-17 Thread March
i found there is a method which can detect if your use is browsering your site on iPhone, function isiPhone() { var agent = navigator.userAgent.toLowerCase(); return agent.match(/iPhone/i); } this method defined in http://images.apple.com/global/scripts/browserdetect.js maybe jQuery may

[jQuery] jQuery Ajax pagination

2007-06-17 Thread Web Specialist
I'm looking an example using jquery for grid pagination with ajax(database hits) support. http://makoomba.altervista.org/grid/ haves a great example but using xml data. I'll want to use json instead. Do you know? Cheers

[jQuery] Re: Printer Friendly Form Field Replacements

2007-06-17 Thread [EMAIL PROTECTED]
Because its not just the "look" that matters. If you have a long text value in an input element, then the text value gets cut off. Can you use CSS to fix that? Also, for the multi-select boxes, you only show the values selected, not all of the options. On Jun 16, 10:47 am, "R. Rajesh Jeba Anbi

[jQuery] Re: unbind ajaxForm

2007-06-17 Thread Mike Alsup
Pezkel, There is not a built-in way to unbind the form, although I think that's a good idea. The following code should let you unbind the form manually: $('#myForm').unbind('submit').find('input:submit,input:image,button:submit').unbind('click'); Mike On 6/17/07, pezkel <[EMAIL PROTECTED]>

[jQuery] Re: getting the (computed) background-color

2007-06-17 Thread Fil
I'am not sure, but this one may be faster: // get the background color var current_p = $(this); var bg = "transparent"; while(bg == "transparent") { bg = current_p.parent().css('background-color'); current_p = current_p.parent(); } you have a parent() too many ;-) anyway this

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Robert Wagner
it (the link you mentioned) behaves _strange_ in safari. (2.0.4) it hangs a few seconds an then it shows the tabs (sometimes). -robert 2007/6/17, Sean Catchpole <[EMAIL PROTECTED]>: Phew, I finally finished getting the bugs out, so it's ready for release. What you say? Why it's idTabs of cours

[jQuery] unbind ajaxForm

2007-06-17 Thread pezkel
Hi, I am currently using the form plugin and I love it. There's one minor thing I don't quite seem to understand. Is it possible to unbind the ajaxForm from the form in question? I am using a number of radio buttons and depending on the radio that is clicked the form should be submitted via ajax

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread Rey Bango
Great work Sean! Sean Catchpole wrote: Phew, I finally finished getting the bugs out, so it's ready for release. What you say? Why it's idTabs of course. =P idTabs: http://www.sunsean.com/idTabs/ I made this plugin because I wanted a lightweight tabs plugin that would allow me to hide and sh

[jQuery] Suggestion: change for jQuery "css" method?

2007-06-17 Thread Fred Janon
Hi, I noticed that the "css" method clones the node including the id which is supposed to be unique in the HTML document. I know the clone node is just temporary but for cross browser and future compatibility, would it be good to remove the "id" attribute from the clone node? I tried removeAttr("

[jQuery] About plugin best practices

2007-06-17 Thread philguillard
Hi, I'm still a newbie and now writing my own plugin, i'd like to ask 2 questions, taking as best pratice : http://jquery.bassistance.de/jquery-getting-started.html # Optional: Create an object with helper functions, eg.: jQuery.fooBar = { height: 5, calculateBar = function() { ...

[jQuery] Re: url encoding for GET

2007-06-17 Thread Mike Alsup
But I did that by using the example code given on docs site Yes, that example is correct. See the difference: data: "url="+url,num="+num, data: "name=John&location=Boston", As for the question about encoding, if the "data" option is a string it is assumed that it is already encoded. If i

[jQuery] Re: How is "height" calculated?

2007-06-17 Thread Fred Janon
Klaus, Humm, I still can't get the size of an element while it's hidden and absolute... I tried with an element: style="display: none; position: absolute" and alert("id: " + elt.id + " height: " + elt.offsetHeight + " width: " + elt.offsetWidth); alert("id: " + elt.id + " style.height: " + elt

[jQuery] Re: Could anyone send me a copy of Catfish Advert Plugin 1.3

2007-06-17 Thread phpletter
My email address:cailongqun [at]yahoo[dot]com[dot]cn Sorry, Just found that I put wrong Site url above, it should be http://www.phpletter.com Thanks On Jun 17, 11:34 am, phpletter <[EMAIL PROTECTED]> wrote: > Hi there >Could anyone send me a copy of Catfish Advert Plugin 1.3. its > official s

[jQuery] Re: Form plugin, filling results into the fields

2007-06-17 Thread wyo
On 17 Jun., 04:14, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > No, the form plugin does not do anything with the server response > (other than pass it to your callback). What exactly is it that you > need to do? > Well I though the form plugin might be able to loop through the response and assigns

[jQuery] Re: url encoding for GET

2007-06-17 Thread joomlafreak
But I did that by using the example code given on docs site http://docs.jquery.com/Ajax $.ajax({ type: "POST", url: "some.php", data: "name=John&location=Boston", success: function(msg){ alert( "Data Saved: " + msg ); } }); On Jun 16, 8:24 am, "Mike Alsup" <[EMAIL PROTEC

[jQuery] Re: ANNOUCE: idTabs plugin released!

2007-06-17 Thread joomlafreak
Really really cool man. I like the simplicity of this Sean. Sincere thanks from bottom of my heart for writing this beautiful plugin and appreciation for the well designed display of the plugin and its functionalities. JoomlaFreak On Jun 17, 2:54 am, "Sean Catchpole" <[EMAIL PROTECTED]> wrote