[jQuery] AjaxSubmit - Form Plugin Serialize Submit Button Data

2010-01-20 Thread Jamie
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

[jQuery] Iframe resizing

2010-01-14 Thread 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

[jQuery] Re: Paste text at selection in DIV

2009-02-23 Thread 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

[jQuery] Paste text at selection in DIV

2009-02-23 Thread Jamie
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

[jQuery] draggable and IE problems

2009-02-10 Thread Jamie
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

[jQuery] Re: Superfish with bgiframe does not cover position:relative div in IE

2009-01-07 Thread Jamie Krug
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: > >

[jQuery] Superfish with bgiframe does not cover position:relative div in IE

2008-12-17 Thread Jamie Krug
: 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=&

[jQuery] Re: Sortables and radio buttons issue

2008-03-06 Thread Jamie
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!

[jQuery] Re: Sortables and radio buttons issue

2008-03-06 Thread Jamie
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

[jQuery] Sortables and radio buttons issue

2008-03-05 Thread Jamie
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

[jQuery] Re: Effect: fadeOut fadeIn / opacity modifications don't work in my app

2008-03-03 Thread Jamie
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

[jQuery] Re: Select next element ...

2008-02-17 Thread Jamie
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

[jQuery] Re: a question about simple manipulation

2008-02-16 Thread Jamie
$("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

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-15 Thread Jamie
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

[jQuery] Re: Selecting Parent

2008-02-15 Thread Jamie
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

[jQuery] Re: Problem with namespacing plugins

2008-02-15 Thread Jamie
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

[jQuery] Re: prepend - but make second item instead of first

2008-02-15 Thread Jamie
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

[jQuery] Re: How to dynamically load jQuery plugins?

2008-02-15 Thread Jamie
;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

[jQuery] Re: Quick way to package form elements?

2008-02-15 Thread Jamie
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

[jQuery] Re: Re[jQuery] moving dynamically added elements

2008-02-15 Thread Jamie
; //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

[jQuery] Re: put the value back in the input (Beginner)

2008-02-15 Thread Jamie
.focus(function () { $(this).val(""); }) .blur(function() { $(this).val("Schnellsuche"); }); }); - Jamie Goodfellow On Feb 15, 9:28 am, tlob <[EMAIL PROTECTED]> wrote: > Hello >

[jQuery] Re: searching for an element with particular value

2008-02-15 Thread Jamie
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"

[jQuery] Re: Problem attaching click event to links

2008-02-15 Thread Jamie
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

[jQuery] Radio Buttons and Cloning

2008-02-05 Thread Jamie
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

[jQuery] Re: Reverse Ajax in jQuery

2008-02-05 Thread Jamie
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

[jQuery] Re: XML Processing

2008-02-05 Thread Jamie
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("

[jQuery] Back Button Clears Form

2008-01-25 Thread Jamie
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

[jQuery] Reverse Ajax in jQuery

2008-01-25 Thread Jamie
completion of the ajax call? Thanks! Jamie Goodfellow

[jQuery] Re: jQuery 1.2.1 errors with Interface

2008-01-24 Thread Jamie
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

[jQuery] Re: XML Processing

2008-01-07 Thread Jamie
#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

[jQuery] XML Processing

2008-01-05 Thread Jamie
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

[jQuery] dynamic array of text inputs.. possible with current plugin?

2007-12-05 Thread jamie
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

[jQuery] JQuery + Interface, Multiple Slider Problems

2007-06-27 Thread Jamie Turner
ume the background must be an image...) Thanks, - Jamie Turner