[jQuery] Re: Defining more than one function

2008-02-17 Thread 1man
Can't really see much wrong with the code, but it may be easier to write your hide function like J(parentDivIdHere).children().hide(1); Where the parent div is the the div containing #120141 ... etc. But that depends on what you are trying to acheive. You could also write it like J('

[jQuery] Re: Defining more than one function

2008-02-17 Thread 1man
Apologies that should be j('#idOne, #idTwo, #idThree, ').hide(1); Matt On Feb 17, 2:19 am, Michael Ray [EMAIL PROTECTED] wrote: I am trying to define three functions within the $(document).ready() function. However, each of these functions only work if the other two are not there. I

[jQuery] Re: Google map plugin?

2008-01-29 Thread 1man
Or you could take a look at mapstraction (http:// www.mapstraction.com/) There was a tutorial on 24ways in December, nice introduction. http://24ways.org/2007/unobtrusively-mapping-microformats-with-jquery Hope that helps. On Jan 28, 10:51 pm, Chris J. Lee [EMAIL PROTECTED] wrote: I've seen a

[jQuery] Sorting numerically based on number of occurrences

2008-01-10 Thread 1man
.. Jones(3) Smith(2) Doe(1) John(1) Now i have managed to pull the names in fine, and created an array of all the names, i'm just a little unsure on what to do next with the sorting issue, and how to do this. Any input on the problem would be greatly appreciated. Thanks 1man