[jQuery] Re: Help using

2009-09-30 Thread Jsudesign
Just a single page, It's for a display. On Sep 30, 1:37 pm, James wrote: > Does this have to take into account of people navigating through > different pages on the website? Or just on a single page? > > On Sep 30, 8:49 am, Jsudesign wrote: > > > Hello I'm in

[jQuery] Help using

2009-09-30 Thread Jsudesign
Hello I'm in need of some help in getting my custom ad set up working. Any help would be greatly appreciated. Here's what I'm trying to do: I have content set up and after 10 minutes I want to display an advertisement over the content that last for 5 minutes. So it would look like this: Regular

[jQuery] Re: My birthday gift to the jQuery Community

2009-02-27 Thread Jsudesign
thanks this is cool On Feb 27, 10:44 am, "Rick Faircloth" wrote: > Nice, Sean! > > Rick > > > > -Original Message- > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On > > Behalf Of Sean O > Sent: Friday, February 27, 2009 1:20 PM > To: jquery-en@googlegroups.com > S

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
Works with out the select options as well. :) On Feb 27, 10:19 am, Jsudesign wrote: > Thanks Ricardo, > > I got it to work :D > Here's the final code. > > // JS /// > > $(document).ready(function(){ >   $("select&qu

[jQuery] Re: Help me!: $(this) ???

2009-02-27 Thread Jsudesign
t; > $(".myButtons").click(function(){ >      $(this).parent().find('select').val(1); >   }); > > - ricardo > > On Feb 26, 10:15 pm, Jsudesign wrote: > > > Hi James, thanks for the response. > > > It wasn't that I did try your idea.

[jQuery] Re: Help me!: $(this) ???

2009-02-26 Thread Jsudesign
uot;).val('1'); //this will select the option with// Works but changes all buttons. Any thoughts? Thanks! On Feb 26, 5:00 pm, James wrote: > You probably need a 'value' attribute assigned to your options. eg.: > 1 > 2 > > On Feb 26, 2:45 pm, Jsudesign wrote: >

[jQuery] Re: Help me!: $(this) ???

2009-02-26 Thread Jsudesign
w Option(0), >        new Option(1), >        new Option(2) >    ); > >   $(".myButtons").click(function(){ >      $(this).find('select').val(1); //this will select the option with > value == 1 >   }); > >  }); > > From the code your posted one

[jQuery] Help me!: $(this) ???

2009-02-23 Thread Jsudesign
Hi everyone, I have an add button set up and when you click it it changes the selected input from 0 to 1. Where my problem is...is that it's doing this for every product. Here's an example: http://rickyscentralcitymall.com/ordering/tables.html I would add a new class to each product, but that's

[jQuery] Add Button / Select Form Change

2009-01-19 Thread Jsudesign
Hello Guys, I'm trying to create an add button that will change the options in a select form from 0 to 1 and so on. So When the add button is pressed. The Qty: Select Goes from 0 to 1 Any help with this would be awesome, this is my first time trying to use jquery with forms. Best, Justin