each submit button click
differently while still serializing the submit button info.
Any idea on how to do this? Is there a way to handle an onclick event
on a submit button and use the ajaxSubmit function to send through the
clicked submit button's info?
Thanks in advance
Jamie
auto resize the content of the window? I have tried hooking
onto the dialog resize event but it never gets called.
Your advise would be most appreciated.
Jamie
this.focus();
}
});
};
On Feb 23, 5:35 pm, Jamie wrote:
> I'd like to have a way to paste text into a DIV at the selection point
> via a link. Something like this:
>
> Pa
I'd like to have a way to paste text into a DIV at the selection point
via a link. Something like this:
Paste Test
This is my text
Say I have the above and I highlight "text" with the mouse. How could
I make the Paste Test link overwrite the "text" with "test"? Really
what I'm trying to accom
I'm having some problems with a draggable list item and dragging it to
a nearby textarea inside of another div. (See
http://dev.toolbox.learningfocused.com/tests/planner/unit.html for
reference)
I have 2 issues:
1) In IE, the zIndex doesn't appear to be working properly and won't
allow me to d
r that was not remaining below the superfish drop-downs. But
it's golden now. Thanks again!
On Jan 6, 2:13 pm, camron wrote:
> this worked for me
>
> http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/
>
> On Dec 17 2008, 11:30 am, Jamie Krug wrote:
>
>
:
http://www.thekrugs.com/superfish-ie-issue/scr-superfish-ie-issue.png
My test page to reproduce the problem is here:
http://www.thekrugs.com/superfish-ie-issue/index.html
And below is the page source of my test page...
Many thanks in advance!
Jamie
http://www.w3.org/1999/xhtml"; xml:lang=&
Actually, I figured out the issue. I needed to put the radio buttons
inside of a form tag and that fixed it. Thanks for the help!
Well, it seems to be that ANY time you have an input tag inside of a
draggable DIV the state is lost. These radio buttons are not in a
form. They are only used to adding a class to the DIV. Here is the
most simplified form of the problem.
http://www.reepfamily.com/jquery/test.html.
Select one
I have a simple sortable list of div's with one containing a group of
radio buttons, such as:
Item 1
Item 2
Item 3
Item 4
Item 5
If I check one of the radio buttons and then drag the first Item, once
the div is "dropped" the value of the
I'm having the same problem in IE6..
On Mar 3, 5:26 am, "Alexandre Plennevaux" <[EMAIL PROTECTED]>
wrote:
> hi friends,
>
> I just noticed the fadeIn fadeOut effect don't work anymore in my
> application, meaning: there is no "error", but the elements don't
> fade. The elapsed time of the effect
With that code, do
$(this).parent().next('div').toggle();
- Jamie Goodfellow
On Feb 17, 7:27 am, Daniele <[EMAIL PROTECTED]> wrote:
> Thanks for reply, i read the traversing, but still it doesn't work and
> I found why:
>
> > $("a").click(fun
$("a").append(" ");
Will append the spaces to all a tags on your page.
And like Cloudream said, check out the demos. The jQuery site has
loads of great demos for doing just about anything.
- Jamie Goodfellow
On Feb 16, 9:53 am, Cloudream <[EMAIL PROTECTED]> w
rks cross-browser and cross-os? At least the
> most common ones...
>
> On Feb 15, 5:49 pm, Jamie <[EMAIL PROTECTED]> wrote:
>
>
>
> > Hey,
>
> > I do something similar, I move all my includes to my page JS file. I
> > also have a common JS file that al
Hey,
I would change your .parents("a") to .parent() (unless you expect the
img to be buried sometimes..).
But to get the title, do this.parents("a").attr("title");
- Jamie Goodfellow
On Feb 15, 4:44 pm, Steve Davis <[EMAIL PROTECTED]> wrote:
> i have a
So I'm probably just showing my ignorance, but why isn't that
chainable?
- Jamie Goodfellow
On Feb 15, 1:44 pm, [EMAIL PROTECTED] wrote:
> Hi, I have a a problem that I don't really know how to take care of.
>
> I want to do something like this
>
> $.fn.my
to add another header row, or
$("#yourTable tbody").prepend(row);
to add a new body row to the top.
- Jamie Goodfellow
On Feb 15, 5:48 pm, Shelane <[EMAIL PROTECTED]> wrote:
> I would like to add a row to a table. The first row is a header. So
> I want to add it just und
;text/javascript',
src: file
}
);
}
}
Then, at the top of each page JS, I have:
includeJs("resources/javascript/jquery/jquery.bgiframe.js");
includeJs("resources/javascript/jquery/jquery.dimensions.js");
The URL to the
There's a serialize method:
$("#yourForm").serialize();
- Jamie Goodfellow
On Feb 15, 11:58 am, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> What's the quickest way you know of to gather parameters and values in
> a form and pu
; //dynamically create a new DIV
$removingElement.click(function()
{
$("#" + removeId).remove();
});
}
- Jamie Goodfellow
On Feb 15, 10:08 am, meeboo <[EMAIL PROTECTED]> wrote:
> Hey all
>
> How can I when dynamically adding a new element also bind
.focus(function () {
$(this).val("");
})
.blur(function() {
$(this).val("Schnellsuche");
});
});
- Jamie Goodfellow
On Feb 15, 9:28 am, tlob <[EMAIL PROTECTED]> wrote:
> Hello
>
Hey,
This should work:
myDiv.find("input:hidden[name^='file'][value='" + myVar + "']");
- Jamie Goodfellow
On Feb 14, 6:33 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hi,
>
> How do I search the DIV, "myDiv"
Maybe I'm missing something, but I don't see any tags in your
example doc..
On Feb 15, 7:05 am, nerohc <[EMAIL PROTECTED]> wrote:
> Hi, first, i'm sory this problem is probably solved in somewhere in
> the net, but i don't have much time.
> Mi problem is this:
> I have links that it's href is
7;, 'testRadio3').attr('name',
'testRadioB').val("bloop3").insertBefore($("#formCreateService"));
$("#testRadio2").clone(true).attr('id', 'testRadio4').attr('name',
'testRadioB').val("bloop4").insertBefore($("#formCreateService"));
Thanks!
Jamie Goodfellow
the
infrastructure of my site, you could use JSON). The client then
updates the UI again.
This repeats until the state received from the server indicates the
call is complete.
- Jamie
On Jan 25, 8:47 am, Jamie <[EMAIL PROTECTED]> wrote:
> Hey,
>
> Has anyone ever tried any revers
Thanks for the help Shawn! Works great!
On Jan 21, 3:38 am, Shawn <[EMAIL PROTECTED]> wrote:
> I did it in this way
> // jquery version: 1.2.1 packed
> if($.browser.msie){// in ie6
> $xml=""+$response+"";// .. is needed for
> ie6}else{
>
> $xml=$xml.replace("]]>","").replace("
Hey,
After starting to use jQuery, I've found the back button on my browser
no longer remembers the values in my forms. The user has to re-enter
everything if they accidentally move past a page and wish to go back.
Is there any way I can get the page to keep it's state?
Tha
completion of the ajax call?
Thanks!
Jamie Goodfellow
I had the same error and after checking the html I noticed I was
referencing a parent element by class which no longer existed. Setting
the correct class fixed the errors.
On Dec 13 2007, 8:16 pm, SteelSoftware <[EMAIL PROTECTED]>
wrote:
> I'm also getting the same error when I've upgraded to 1.2
#x27;m
doing wrong. This code works (alerts an object):
alert($("*"));
and this code does not work (alerts an undefined)
var xml =
"" +
"" +
" 1" +
" Default customer" +
"";
alert($("*", x
x27;subscriberId', xml).text();
but this fails to at the same point.
Am I doing something wrong or missing something in my code? Has
anyone else encountered this error message?
Thanks in advance,
Jamie Goodfellow
ax autocomplete.
I thought of using a multiple autocomplete textarea for this, but I
need the draggable functionality for each line in the list.
Is this kind of dynamic list of input fields possible with an existing
jQuery plugin, or should I look into building my own?
Thanks,
Jamie
ume the background must be an image...)
Thanks,
- Jamie Turner
33 matches
Mail list logo