[jQuery] Re: How to Do This

2009-09-01 Thread Glazz
Hi.. I don't see what you want to do... please be more specific :) On Sep 1, 1:23 pm, bharathbhooshan ambati wrote: > Hi > > I have seen one site which consists of share/Email in a single tab. > Can any body tell me hw to do this > > FYI.. > site:http://www.networkworld.com/news/2009/083109-vm

[jQuery] Re: get parent where

2009-08-02 Thread Glazz
I've went with a problem similliar to yours, a guy helped me out $(this).closest('.your-item').attr('id'); Try putting in your div a class named "your-item" like so, class="your- item" and then when you click on your span i think it wold give your div id, just try it :) Example:

[jQuery] Re: jQuery Modal script needed...

2009-07-31 Thread Glazz
jQuery UI has what you want, i guess lol, http://jqueryui.com/ On 31 Jul, 20:56, oli wrote: > Hey there, I'm looking for a light-weight jQuery modal plugin that > supports ajax, some effects and restyling or resizing by a little > Api. > > I didn't find anything that fits my expectations. > > Th

[jQuery] Re: Slider Experts?

2009-07-28 Thread Glazz
Hi, Don't know if this is what you want but here it goes, http://jqueryfordesigners.com/coda-slider-effect/ Regards On 28 Jul, 01:31, photogeek wrote: > Anyone know how to create the slider effect, coda slider, so that it > opens up with something other than the first panel/div?  I know there

[jQuery] Re: jquery, php question (Probably the wrong place to ask)

2009-07-21 Thread Glazz
Hi, What is the code that you now? If you have none we can help you create the code you need But you are going to use $.ajax() to get the numbers that you are talking about from the MySQL table. And then you can update the form as your needs. Btw, im a neewbie too but i can help in what i can

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
ot; > xmlHttp.onreadystatechange=stateChangedCharts > xmlHttp.open("GET",url,true) > xmlHttp.send(null) > > } > > function createInterlocksGraph(id_company) > { > xmlHttp=GetXmlHttpObject() > if (xmlHttp==null) > { > alert ("Your browser does not suppor

[jQuery] Re: jQuery - Best way to get this ID from the DIV.

2009-07-21 Thread Glazz
> > - Richard > > On Tue, Jul 21, 2009 at 2:27 PM, Glazz wrote: > > > Hi, > > > I have this HTML: > > > > > >   ... > >  x ... > > > > > > > >   ... > >  x ... > > > > > In the "product " DI

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
And btw... there's any return false in createCharts(); ? On 21 Jul, 19:53, Glazz wrote: > Hi, > > Can you please post the function that is not working in Firefox > please? > > Regards > > On 21 Jul, 19:48, "evanbu...@gmail.com" wrote: > > > This

[jQuery] Re: Calling other functions inside a function

2009-07-21 Thread Glazz
Hi, Can you please post the function that is not working in Firefox please? Regards On 21 Jul, 19:48, "evanbu...@gmail.com" wrote: > This is probably more of a basic javascript question than a specific > jquery function.  I have this jQuery function named validateSubmit() > which calls two oth

[jQuery] jQuery - Best way to get this ID from the DIV.

2009-07-21 Thread Glazz
Hi, I have this HTML: ... x ... ... x ... In the "product " DIV i have an " x " that x is an image icon, when clicked it is suppossed do delete the product, i have it working very good, but i don't know if the way i do to get the ID via javascript is the best way or is a more s

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-19 Thread Glazz
Hmm i tried to replicate that on my server but whithout success... You can try what i've mentioned in my previous post, display: none; like this: HTML: JS: Add this $('#slider').css({'display' : 'block'}); After this.each(function() { It will look like this: this.each(function()

[jQuery] Re: $.ajax How-to?

2009-07-19 Thread Glazz
Hi, Here " data : $('#form').serialize() " you are serializing the data, so in the php i guess you need to unserialize it, dunno but maybe that is the problem with your script. Here's how i do it, i use json btw: $.ajax({ type: 'POST', url: 'ajax.php', data: 'quantidade=' + $('#qua

[jQuery] Re: Could REALLY use some help implementing a slider/carousel. I think I am really close!

2009-07-19 Thread Glazz
Hi, I dunno how your plugin works, but here goes my 2 cents #Problem 1: Why don't place a display: none; style? Dunno if this works with your plugin but, you can do this and in inside your plugin just show the content you need to show... #Problem 2: Don't understand what you mean for "scrolls w

[jQuery] Re: jQuery - Ajax and Load question

2009-07-07 Thread Glazz
Ok i got it, just need to use $.ajax({dataType : 'json'}); On 7 Jul, 23:12, Glazz wrote: > Thanks for the quick replies, using $.get i can do what i want, with > $.ajax i can too, except the data coming from the .php page is json > encoded so in the $.get i used 'j

[jQuery] Re: jQuery - Ajax and Load question

2009-07-07 Thread Glazz
                         error: function() { >                                 alert('error occurred'); >                            } >                          }); > > On Jul 7, 11:49 am, BaBna wrote: > > > You need to define your callback function. Maybe something like this? > > > $.g

[jQuery] jQuery - Ajax and Load question

2009-07-07 Thread Glazz
Hello, I have a function that have this: $.ajax({ type: 'GET', url: 'index.php', data: 'id=' + productId + '&qtd=' + quantidade }); This piece of code is working gr

[jQuery] Re: jQuery - Click function + Ajax

2009-07-02 Thread Glazz
> {paramY}"> > > isn't that invalid html and rejected by some browsers?  or is that > normal and just fine to do? > > On Jul 2, 12:44 pm, Glazz wrote: > > > Hi there, > > > I have a hyperlink ( ) after i click on that hyperlink, the script > > sends

[jQuery] jQuery - Click function + Ajax

2009-07-02 Thread Glazz
Hi there, I have a hyperlink ( ) after i click on that hyperlink, the script sends some data to a .php page; That works fine, but for just one hyperlink , i want to be able to have 2 or more hyperlinks in the same page using the same script. Here goes the script: $("#button").click(fun

[jQuery] Re: DivMenu

2009-06-14 Thread Glazz
I figured that out, just needed to put this: $(".divmenu-dados").hide(); in here $(element).click(function(){ $(".divmenu-dados").hide(); $('#' + divDados).show(); return false; }); On 14 Jun, 19:30, Glazz wrote: > Hi, its working almost like i want, know

[jQuery] Re: DivMenu

2009-06-14 Thread Glazz
Hi, its working almost like i want, know it the divs stay's opened if i open another one, i tryed using find("yourDivClass:visible").hide(); without success. Here's a screenshot of what is happening: http://i40.tinypic.com/14916wg.png The javascript that i edited: /**

[jQuery] Re: DivMenu

2009-06-14 Thread Glazz
'         : top + 15 + 'px', >                         'display'     : opcoes['display'], >                         'position'    : opcoes['position'], >                         'background'  : opcoes['background'], >                         'border'      : opcoes['border'], >                         'font-family' : opcoes['font-family'], >                         'font-size'   : opcoes['font_size'] >                 }); >                 /**   end   **/ >         }); >         /**   end   **/ > > }; > > On 13 Jun, 14:42, Charlie wrote: > > > > > get better response with a  link to see the problem, jsbin works great , > > has built in script libraries including jquery > > Glazz wrote:nobody can help me out?- Hide quoted text - > > - Show quoted text -

[jQuery] Re: DivMenu

2009-06-13 Thread Glazz
'position': opcoes['position'], 'background' : opcoes['background'], 'border' : opcoes['border'], 'font-family' : opcoes['font-family'],

[jQuery] Re: DivMenu

2009-06-12 Thread Glazz
nobody can help me out?

[jQuery] Re: Change form action based on button clicked

2009-06-12 Thread Glazz
Cookies?! See the link i've posted above! On 12 Jun, 15:48, ciupaz wrote: > Thanks, it's work, and how can I recover the input text value, without > using the querystring? > > Luis

[jQuery] Re: Change form action based on button clicked

2009-06-12 Thread Glazz
View this page http://www.komodomedia.com/blog/2008/07/using-jquery-to-save-form-details/ On 12 Jun, 15:25, ciupaz wrote: > Hi all, > I have a form like this: > > > >     Name: >     > >     >     > > > > how can I change my action form so the form goes to Page1.htm with > click on button

[jQuery] [HELP] DivMenu

2009-06-12 Thread Glazz
hi, i've a function that when i click on a link a div shows up, and it works nice, but when i click on the div itself the div closes up, and other "bug" is, that if i have 2 or more divs if i click on one link and click on other link the div's stays visible, how can i solve this? here is the cod

[jQuery] [HELP] DivMenu

2009-06-12 Thread Glazz
hi, i've a function that when i click on a link a div shows up, and it works nice, but when i click on the div itself the div closes up, and other "bug" is, that if i have 2 or more divs if i click on one link and click on other link the div's stays visible, how can i solve this? here is the cod