RE: [Rails-spinoffs] String.protoype.toQueryParams

2005-10-29 Thread Maninder, Singh
Thanks for replying and clearing my doubt Alan. -Mandy. === Since the query string is calcluated, I think a better usage would be: var str = "?name=mandy&[EMAIL PROTECTED]&age=20" var qs = str.toQuerySTring(); alert(qs.name + " " +

Re: [Rails-spinoffs] String.protoype.toQueryParams

2005-10-28 Thread Alan Gutierrez
* Maninder, Singh <[EMAIL PROTECTED]> [2005-10-27 02:46]: > Hi, I am trying to play with all the methods in the Array Object. > > Just wanted to check with you guys if this is the correct explanation of > toQueryParams(). > If yes, then I'll add it to the documentation as well. > > Works for me