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) ...
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);
});
});
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
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
;"+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
: function(form)
{
$
('#sendCoMailForm').unbind('submit').find(':submit,input:image').unbind('click');
$(form).ajaxSubmit(sendCoMail);
}
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
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
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
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
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
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
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
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
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
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
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
i simply want to do this ...
$("#mydiv").prepend("Hello There").show("slow");
it shows up, but without the 'show' effect
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
19 matches
Mail list logo