On Jul 26, 11:19 pm, Aaron <[EMAIL PROTECTED]> wrote: > ok si i tried different ways of the above code with the > if( $j('#SpeakerDIV').length ) but i can not seem to figure out how to > get it to work.
i don't personally use either of the plugins you're working with, so i can't say too much more about it - my guesses so far were based on the error message and code you posted. Your call to $j('#SpeakerDIV') returns an array of elements (or an array-like object), and if there are no elements then (.length==0). So, in theory, the above code "should" work for you. :?