[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
looks like the attribute "name" is not supported in IE6 On Jan 16, 12:50 pm, skatta <[EMAIL PROTECTED]> wrote: > in this issue First off ... i'm using ajax to pull elements into the > DOM. So my code uses this (there are probably better ways to do > this) ...

[jQuery] Re: attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
oops ... in my example i used event.target.id ... it's event.target like so ... $(document).ready(function() { $('body').click(function(event) { if ($(event.target).is('.touchRfq')) { var touchco = $(event.target).attr("name"); alert(touchco); }); });

[jQuery] attr - problem getting attributes in IE6 ... IE7 and FF are fine

2008-01-16 Thread skatta
in this issue First off ... i'm using ajax to pull elements into the DOM. So my code uses this (there are probably better ways to do this) ... $(document).ready(function() { $('body').click(function(event) { if ($(event.target).is('.touchRfq')) { var touchco = $(event.target.id).attr("name

[jQuery] Re: bassistance validition plugin & the form plugin

2007-09-15 Thread skatta
Anyone? On Sep 14, 10:09 am, skatta <[EMAIL PROTECTED]> wrote: > Hi all, I'm stumped on this. > > I use Ajax to load a form into the DOM. I use the FORM plugin to > handle the form and the Validation plugin to validate it. > > If I load the form, fill out everythin

[jQuery] Re: grabbing event.target & using it load - no longer works for me in 1.1.4+

2007-09-15 Thread skatta
;"+event.target works. > > var resultlink = event.target.href; > > -- > Brandon Aaron > > On 9/14/07, skatta <[EMAIL PROTECTED]> wrote: > > > > > yeah, was weird though ... it worked up to 1.1.3 > > > here is what it was - it was simply a click to

[jQuery] Re: bassistance validition plugin & the form plugin

2007-09-15 Thread skatta
: function(form) { $ ('#sendCoMailForm').unbind('submit').find(':submit,input:image').unbind('click'); $(form).ajaxSubmit(sendCoMail); }

[jQuery] Re: grabbing event.target & using it load - no longer works for me in 1.1.4+

2007-09-14 Thread skatta
load it } On Sep 14, 10:31 am, Stephan Beal <[EMAIL PROTECTED]> wrote: > On Sep 14, 3:22 pm, skatta <[EMAIL PROTECTED]> wrote: > > > $(".dataWin").hide().load(resultlink); > > > this works ... > > > $(".dataWin").hide().load(&q

[jQuery] bassistance validition plugin & the form plugin

2007-09-14 Thread skatta
Hi all, I'm stumped on this. I use Ajax to load a form into the DOM. I use the FORM plugin to handle the form and the Validation plugin to validate it. If I load the form, fill out everything completely and click submit, it works perfect. However, if I type in bad data, click submit and trigger

[jQuery] Re: grabbing event.target & using it load - no longer works for me in 1.1.4+

2007-09-14 Thread skatta
i found a fix but i'm unsure why it's a fix and still not sure why it's a problem, is this a bug? this doesn't work ... $(".dataWin").hide().load(resultlink); this works ... $(".dataWin").hide().load(""+resultlink+""); On S

[jQuery] grabbing event.target & using it load - no longer works for me in 1.1.4+

2007-09-14 Thread skatta
i have a simple database pile of links returned from search. it's ajax loaded content. what i do is grab the href with the following code and load it in ... this spins not stop in firebug and i'm not sure why it's now broken ... if ($(event.target).is('.partresult')) { var resultlink = event.tar

[jQuery] Re: using jqModal - problem with executing jqm with triggers loaded in via AJAX

2007-07-31 Thread skatta
t do anything at all. to be honest, i'm just going to make my own modal. i can't seem to understand how binds work ... i've read different articles over and over but i'm simply not connecting the dots. On Jul 31, 9:10 pm, Brice Burgess <[EMAIL PROTECTED]> wrote: > On J

[jQuery] Re: using jqModal - problem with executing jqm with triggers loaded in via AJAX

2007-07-31 Thread skatta
anyone? On Jul 31, 12:11 pm, skatta <[EMAIL PROTECTED]> wrote: > also ... is there a better way to handle executing code that's loaded > via ajax? something better than ... $('body').click(function(event) > { } > > On Jul 31, 11:54 am, skatta <[EMAIL PRO

[jQuery] Re: using jqModal - problem with executing jqm with triggers loaded in via AJAX

2007-07-31 Thread skatta
also ... is there a better way to handle executing code that's loaded via ajax? something better than ... $('body').click(function(event) { } On Jul 31, 11:54 am, skatta <[EMAIL PROTECTED]> wrote: > hello, > > just when i thought i had a grip on executing jquery

[jQuery] using jqModal - problem with executing jqm with triggers loaded in via AJAX

2007-07-31 Thread skatta
hello, just when i thought i had a grip on executing jquery functions from content that was loaded via ajax and added to the dom dynamically, i have this issue with jqModal. i'm trying to open a modal window from code that was loaded in via Javascript. so i use the following, this works on most

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
server less, so i'm pretty happy. my point is i'm trying to keep ram consumption at bay ... so i want it removed completely On Jul 23, 2:31 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > skatta wrote: > > scott, i think that was it ... i also had some issues with my or

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
er ... scratch display:none ... it doesn't remove it from the jquery object. On Jul 23, 1:03 pm, Scott Sauyet <[EMAIL PROTECTED]> wrote: > skatta wrote: > > i simply want to do this ... > > > $("#mydiv").prepend("Hello There").show("sl

[jQuery] Re: not sure why prepend with effects not working for me

2007-07-23 Thread skatta
Scott Sauyet <[EMAIL PROTECTED]> wrote: > skatta wrote: > > i simply want to do this ... > > > $("#mydiv").prepend("Hello There").show("slow"); > > > it shows up, but without the 'show' effect > > Your "show" is

[jQuery] not sure why prepend with effects not working for me

2007-07-23 Thread skatta
i simply want to do this ... $("#mydiv").prepend("Hello There").show("slow"); it shows up, but without the 'show' effect

[jQuery] Re: please prevent a nervous breakdown ... i'm just not understanding event bubbling and attaching events to the dom

2007-07-13 Thread skatta
thanks dan! i just figured that out On Jul 13, 12:10 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]> wrote: > >if ($(event.target).is('.partresult')) { > > >var resultlink = this.href; > >alert (resultlink); // added to see it it captures the href > > You want either: > > event.target.href // direct