[jQuery] Re: looping through form elements.

2010-01-08 Thread rich
ement not by a class named input. -Thanks, Rich On Jan 8, 7:11 am, Rick van Hoeij wrote: > Hey, > > Maby this will help: > > $('.input').each(function(){ >    alert('Value: ' + $(this).val() + ' - Type: ' + $(this).attr > ('type'));

[jQuery] looping through form elements.

2010-01-08 Thread rich
it loops and it works as expected. I'm not sure how to alert the input's value and what type it is. Any help is greatly appreciated. -Thanks, Rich

[jQuery] Re: Stop a button within an li taking the li event?

2009-12-03 Thread Rich
so thanks for that, not sure what you mean by an input not allowed to be a child of a form though?? Thanks again. Rich On Dec 2, 11:23 pm, RobG wrote: > On Dec 2, 8:33 pm, Rich wrote: > > > I have an unordered list which slidesdown to reveal a sub list on > > click event. I

[jQuery] Re: .dialog() only works once?

2009-12-02 Thread Rich
Problem solved! I needed to use $('#dialog').dialog('destroy') rather than .dialog('close') On Dec 2, 10:39 am, Rich wrote: > I am using the jQuery .dialog UI as a confirm pop up when someone > tries to delete an item from a website. The dialog has 2 buttons

[jQuery] .dialog() only works once?

2009-12-02 Thread Rich
I am using the jQuery .dialog UI as a confirm pop up when someone tries to delete an item from a website. The dialog has 2 buttons, one to confirm the delete, which then carries out an ajax request, and another to cancel the delete request which closes the dialog window. Both buttons work as expect

[jQuery] Stop a button within an li taking the li event?

2009-12-02 Thread Rich
I have an unordered list which slidesdown to reveal a sub list on click event. In the first li there is also a button that takes you to another page. When this button is pressed I don't want the slide down to start, which it currently does as the button is within the li. [code] $("#vml_top_ul li"

[jQuery] Re: jQuery Validate using input type=image

2009-11-30 Thread Rich
009 at 12:51 PM, Rich wrote: > > Thanks that does pass the required value but I'll need to play around > > with styling the button as I don't want the image to appear as an icon > > and not as a button. > > > Thanks > > > On Nov 27, 5:20 pm, Jörn Zaeffe

[jQuery] Re: jQuery Validate using input type=image

2009-11-30 Thread Rich
. You could try > using a button instead: > > > > JörnOn Fri, Nov 27, 2009 at 12:52 PM, Rich wrote: > > I am validating a form that is submitted by an image input (input > > type=image), there are 3 of these inputs which either publish, save or > > delete the fo

[jQuery] jQuery Validate using input type=image

2009-11-27 Thread Rich
I am validating a form that is submitted by an image input (input type=image), there are 3 of these inputs which either publish, save or delete the form details. If I turn javascript off and submit the form I can pick up the value of the input button used. i.e. request.form ("publish.x") = ?, if I

[jQuery] backgroundPosition plugin

2009-11-22 Thread Rich
the right value - there may be a easier/better mathematical solution and I'd love to see any ideas/solutions to this problem. Hope you like it! Cheers Rich

Re: [jQuery] Re: Block UI question

2009-11-03 Thread Rich Elston
); // global hook - unblock UI when ajax request completes $().ajaxStop($.unblockUI); }); Calculation in Progress. Please Stand By.. On Tue, Nov 3, 2009 at 1:23 PM, Rich Elston wrote: > Here's what I have so far. I'm kind of stuck. I just started cre

Re: [jQuery] Re: Block UI question

2009-11-03 Thread Rich Elston
your html. > > > Now, in your jquery function(ready)... > > $("#submit").onclick() bla bla > { >1. load or form your waiting message >2. use AJAX to send your data out. > } > > If you need help with AJAX, see the AJAX tutorial at w3schools.com >

[jQuery] Block UI question

2009-11-02 Thread Rich
I'm trying to implement a processing message and I think Block UI might work however I can't seem to get it to redirect after my processing is complete. Basically, I have a form and a submit button which does a post to a server and passes in several parameters for calculation. The server can take

[jQuery] Re: rounded corner recommendations

2009-09-03 Thread Rich Sturim
ravi -- thanks so much for the feedback, I really appreciate your investigative work. cheers, Rich On Aug 31, 11:18 am, "[ ravi ]" wrote: > On Aug 31, 2009, at 10:31 AM, [ ravi ] wrote: > > > On Aug 31, 2009, at 10:13 AM, Rich Sturim wrote: > > >> That looks

[jQuery] Re: rounded corner recommendations

2009-08-31 Thread Rich Sturim
Jack, That looks like a great choice -- thanks for the tip. -Rich On Aug 28, 3:19 pm, Jack Killpatrick wrote: > I've had good luck with this one after testing many of them in multiple > browsers: > > http://www.parkerfox.co.uk/labs/cornerz > > - Jack > > Ric

[jQuery] rounded corner recommendations

2009-08-28 Thread Rich Sturim
Greetings, Can people recommend a rounded corners plugin that is stable on a wide array of browsers? I've been hunting around -- and found a few some, some better than others. But, I was wondering if there are any elite ones that are truly excellent -- and I should consider? Cheers, Rich

[jQuery] how do I hide an element after my function completes

2009-08-16 Thread Rich Sturim
I have a hidden spinner div. When my jquery function is called -- I show the spinner. But, how do hide I the spinner div after the ajax request has completed? $(function() { $(".pagination a").live("click", function() { var loader = $('#loader') loader.show() // <-- hidde

[jQuery] Re: Disable submit button with Validation plugin

2009-08-11 Thread Rich Sturim
isabled", true).attr("value", > "Submitting..."); >        form.submit(); >     } >   }) > > }); > > Jörn > > On Mon, Aug 10, 2009 at 9:40 AM, Rich Sturim wrote: > > $(document).ready(function() { > >    $("#myForm").validate() > > }); > >

[jQuery] Disable submit button with Validation plugin

2009-08-10 Thread Rich Sturim
$(this).attr("disabled", true); $(this).attr("value", "Submitting..."); $(this).submit(); }); }; How do I combine the two together? -Cheers, Rich

[jQuery] Re: Can't change padding using animate() in IE

2009-07-20 Thread Rich Man
buy cheap designer bags here http://www.px78.com/Handbags/ On Jul 20, 6:38 am, djeyewater wrote: > I have a function that resizes an image (imgCur) and changes its > padding when a new image (img) is loaded like so: > img.onload = function(){ >             var t = this; >             //Animate c

[jQuery] Tablesorter advice required - row level filtering based on inputs?

2008-11-08 Thread rich
Hello. I'm here for advice on which approach to take with this problem. I am using the wonderful tablesorter 2 plugin (http:// tablesorter.com/). I have a table that contains data. I'd like to provide an input field above the table so that a user can filter rows based on a string matched from on

[jQuery] Re: Valid jQuery on Development fails on Production

2008-10-07 Thread rich
Sorry, I saw those... That was just a copy paste error. The tags are all closed. On Oct 6, 6:38 pm, Ryura <[EMAIL PROTECTED]> wrote: > You have some unclosed tags (the last tr and td). Try closing those. > > On Oct 6, 6:06 pm, rich <[EMAIL PROTECTED]> wrote: > > &g

[jQuery] Valid jQuery on Development fails on Production

2008-10-06 Thread rich
I am writing a fairly basic script using jQuery. However, the script behaves differently depending on whether I am running it on my local Web server (localhost) or on a production server. On development, the following code returns the HTML I'm expecting: $('#objID').siblings('.mAddress').html();

[jQuery] Re: Problems with $(document).height() and jQuery 1.2.2

2008-02-05 Thread rich
Perfect. That fixes it. Thanks Scott On Feb 5, 9:03 am, "Scott González" <[EMAIL PROTECTED]> wrote: > Have you checked $(document.body).height()? > > On Feb 4, 10:21 am, rich <[EMAIL PROTECTED]> wrote: > > > On most of my projects I have some js to pu

[jQuery] Re: jCarousel - How do I hide the list before display

2008-02-04 Thread rich
Ah, ok. I thought you were looking to hide that quick flash of the image list before they 'stack' up. On Feb 4, 3:01 pm, caroig <[EMAIL PROTECTED]> wrote: > Ok thank Rich - I'll give that a try - I'd hoped I could hide it all > until it's built. > >

[jQuery] Problems with $(document).height() and jQuery 1.2.2

2008-02-04 Thread rich
eight(): 609 jQuery 1.2.2 (packed): IE $(document).height(): 617 $(window).height(): 613 Firefox $(document).height(): 609 $(window).height(): 609 Thanks guys, -rich

[jQuery] Re: jCarousel - How do I hide the list before display

2008-02-04 Thread rich
I had this problem once before. I ended setting a fixed height on the parent div and setting overflow:hidden. -rich On Feb 4, 8:03 am, caroig <[EMAIL PROTECTED]> wrote: > Hi, > Is there a way of hiding the list before the carousel is fully > generated. I often get to see the

[jQuery] Cycling images based on background-image

2008-01-16 Thread rich
I have a container div with a few things inside such as navigation, a logo, and a few other bits. I'd like to continuously cycle through different background-images of container div. I have to keep images applied as a background-image; any suggestions? Fading and other effects are nice, but I c

[jQuery] Re: continuously search for elements in a document

2007-10-18 Thread rich
x27;ul.errors li:has(span:hidden)').hide(); }); }); Thanks for all the help. -rich On Oct 17, 6:36 pm, Wizzud <[EMAIL PROTECTED]> wrote: > Ummm . no. > > This onBlur stuff that's in .NET somewhere - what is it triggering on? > If it is triggering on known elements (known

[jQuery] Re: continuously search for elements in a document

2007-10-17 Thread rich
f the 'show'er is capable of showing the parent li, why > can't the 'hide'r be capable of hiding the parent li? > > Whatever is doing the show/hide of the errors themselves (the spans) > also needs to do the show/hide of the list item parents. > Or it needs to

[jQuery] continuously search for elements in a document

2007-10-16 Thread rich
s and show/hide the parent LI's when the prompts show/hide? Thanks, -rich

[jQuery] Re: Fastest method to create table rows

2007-08-08 Thread Rich Wild
1000 rows. yours unhelpfully, Rich Wild. On Aug 8, 11:52 am, Josh Bush <[EMAIL PROTECTED]> wrote: > Oh, it's fine. I wasn't expecting someone to write the code for me. > I'm just working on a plugin and hitting a roadblock with IE here. > I'm going to try a