[jQuery] Re: NS_ERROR_XPC_JS_THREW_STRING with jquery 1.3

2009-01-16 Thread bryce4president
hat I knew then to make it work, and it did. But thank your for pointing that out, it went right over my head. I switched it up to the way you suggested and my validation code is definitely a snappier. Thanks again Bryce On Jan 16, 10:04 am, bryce4president wrote: > I boiled this example dow

[jQuery] Re: NS_ERROR_XPC_JS_THREW_STRING with jquery 1.3

2009-01-16 Thread bryce4president
the code, but why are you re-selecting > the current element like you are? The name and ID are the same, so > taking the element you already have and fetching it again through a > different means seems wasteful and unnecessary? > > On Jan 16, 9:23 am, bryce4president wrote: > >

[jQuery] NS_ERROR_XPC_JS_THREW_STRING with jquery 1.3

2009-01-16 Thread bryce4president
This error seems to be rearing its ugly head in FF3 using jquery 1.3. When I was using the latest 1.2.6 for jquery I would get a little warning in firebug that said... Empty string passed to getElementById(). This wouldn't cause anything bad to happen and things would move on just fine. IE7 did

[jQuery] Old code not working with new 1.2.6

2009-01-12 Thread bryce4president
I had a piece of code that worked with 1.2.2 but now it doesn't seem to work with 1.2.6 Here is the code, can anybody see anything that would cause it to stop working? All it does is adds a link to a piece of text in a table cell. $('#'+i).children('td:first').next().click(function(){ ord = $(t

[jQuery] jqGrid... a few questions...

2008-01-22 Thread bryce4president
I noticed that the trirand site is down again this week. I downloaded the demos from the google code page, but they don't really work that well without the database behind it. You can see the code, and work with it, but you can't actually see what it does physically. That aside, one big questio

[jQuery] Follow code not working in IE6

2008-01-11 Thread bryce4president
This works in FF2 just fine. But doesn't work in IE6. I think it is a problem with the .html() $(this).after("LineDateAmountUser"); $.getJSON("Lines",{order:thisorder},function(jsonString){ $.each(jsonString, function(i){

[jQuery] Re: IE not working correctly with jQuery...

2008-01-07 Thread bryce4president
Well google helped me out. Here is what I found... http://www.ventanazul.com/webzine/articles/javascript-expected-identifier-error-internet-explorer thanks M$ On Jan 7, 10:14 am, bryce4president <[EMAIL PROTECTED]> wrote: > I have a simple webpage I'm using to test some example

[jQuery] IE not working correctly with jQuery...

2008-01-07 Thread bryce4president
I have a simple webpage I'm using to test some example code for later implementation. It works great in FF2 but in IE6 is won't render correctly. Can anybody tell me what is wrong with this code? <%@ page language="java" contentType="text/html; charset=ISO-8859-1" pageEncoding="ISO

[jQuery] Re: Issue with jQuery zebra tables tutorial...

2008-01-06 Thread bryce4president
;over');}, function() { > >$(this).removeClass('over'); > > }); > > --Karl > _ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 4, 2008, at 3:11 PM, bryce4president wrote: > > > > > I've just

[jQuery] Issue with jQuery zebra tables tutorial...

2008-01-05 Thread bryce4president
I've just started working with jQuery today. One of the things I've been doing is using zebratables, but it has been with a javascript function I found that runs off the window.onload. I like the idea of doing this in jQuery as it is definitely faster (i tested it) and it is a lot cleaner and si