[jQuery] fadeTo() possible speeds

2009-09-30 Thread kali
here, http://docs.jquery.com/Effects/fadeTo why are all possible params not listed?? (for example for fadeIn(), fadeOut(), fadeTo() it just says speed, but why doesn't it list all possible speeds (slow.. is there a fast???) this site is a bit weird, if I go to

[jQuery] Re: event-binding to dynamically created elements... (JSP vs JS problem......)

2009-08-30 Thread kali
file. But Fiddler is terrific. The main thing is that when you're debugging anything in the browser, you have to forget about theJSPsource and think only in terms of what the browser actually receives. -Mike From: kali this works inJSP: %  for (int i = 1; i 5; i

[jQuery] Re: event-binding to dynamically created elements... (JSP vs JS problem......)

2009-08-29 Thread kali
variables. But usually you don't have to resort to doing something like that if you code things properly. On Aug 28, 12:44 pm, kali maya778...@yahoo.com wrote: hi, I have a problem with binding events to dynamically-generated elements; specif. problem is something I'm trying to do

[jQuery] event-binding to dynamically created elements... (JSP vs JS problem......)

2009-08-28 Thread kali
hi, I have a problem with binding events to dynamically-generated elements; specif. problem is something I'm trying to do with JavaScript doesn't work but it works if I do it in JSP: (and can we PLEASE get ability to display CODE in this forum in NON-PROPORTIONAL FONT???) JSP,

[jQuery] Re: problem with wrapper arrays.......

2009-05-17 Thread kali
On May 6, 12:18 am, Karl Swedberg k...@englishrules.com wrote: On May 6, 2009, at 12:05 AM, kali wrote: On May 5, 10:05 pm, mkmanning michaell...@gmail.com wrote: Accessing the elements by index returns the element itself. To call jQuery methods you'd need to do this: divs = $('div

[jQuery] Re: problem with wrapper arrays.......

2009-05-17 Thread kali
On May 17, 7:14 am, kali maya778...@yahoo.com wrote: On May 6, 12:18 am, Karl Swedberg k...@englishrules.com wrote: On May 6, 2009, at 12:05 AM,kaliwrote: On May 5, 10:05 pm, mkmanning michaell...@gmail.com wrote: Accessing the elements by index returns the element itself. To call

[jQuery] Re: problem with wrapper arrays.......

2009-05-17 Thread kali
On May 17, 7:14 am, kali maya778...@yahoo.com wrote: On May 6, 12:18 am, Karl Swedberg k...@englishrules.com wrote: On May 6, 2009, at 12:05 AM,kaliwrote: On May 5, 10:05 pm, mkmanning michaell...@gmail.com wrote: Accessing the elements by index returns the element itself. To call

[jQuery] jQuery problem with setTimeout()

2009-05-09 Thread kali
var showDiv= $('#myDiv').html(message); setTimeout(showDiv,5000); get error: missing ] after element list I googled this error, it seems the problem is the jQuery code.. although not sure.. would appreciate some suggestions... thank you..

[jQuery] Re: jQuery problem with setTimeout()

2009-05-09 Thread kali
I solved this, BUT: another weird problem: var message is passed to the function, so I have: function successHome(message) { setTimeout('$(#mailSuccess).html(message) 1000); but it says 'message' is not defined only this works: function successHome(message) {

[jQuery] FRAMES

2009-05-06 Thread kali
hi, I need to refer to a frame, in plain JavaScript it is: parent.frames.main.emplmain.document.getElementById ('mail').style.display='block'; how would I do this in jQuery (so I can do neat things like fadeIn(), etc...;) thank you..

[jQuery] problem with wrapper arrays.......

2009-05-05 Thread kali
my understanding (acc. to book jQuey in Action and other sources, like http://jquery.open2space.com/node/10) is that the standard jQuery wrapper always returns an array containing all matching elements.. however, for some very odd reason I can't get an element by referring to its index in the

[jQuery] test - sorry, ignore -- why can't I see my posts....

2009-04-20 Thread kali
I can't see any posts I post to this group, why is this, WHY is it at all that you only read this forum if you're logged on to google?? most forums online you just need to register with the forum.. WHY bring google in either way, even after logging on to my google acct I can't see my posts

[jQuery] Re: passing elem id to a JS function...

2009-04-20 Thread kali
thank you very much!! (why can't I see my posts here? http://groups.google.com/group/jquery-en/topics?gvc=2 (I can only see my posts if I search for my uid (kali) ok, thank you very much.. sorry for two test-posts I have posted.. On Apr 15, 2:47 pm, mkmanning michaell...@gmail.com wrote

[jQuery] passing elem id to a JS function...

2009-04-15 Thread kali
hi, am trying to do image-hide/img-show with jQuery (now use 'regular' JavaScript DOM-scripting.. want to switch to jQuery.. but am having some difficulties: I have this function-call in interface: get_img('photo1','nav1','navAll1','photo2','nav2','navAll2') in function -- old way: