[jQuery] How to add a button

2010-03-03 Thread podeig
Hello!

Is it possible to add a button (like standard drop down list has) to
open the list with all the results? I need two ways to select item by
typing and selection from the list.

If not, may be you can add this functionality to this plug-in?

Thank you! :)


[jQuery] How to add a button for opening the list? [autocomplete]

2010-03-03 Thread podeig
Hello!

Is it possible to add a button (like standard drop down list has) to
open the list with all the results? I need two ways to select item by
typing and selection from the list.

If not, may be you can add this functionality to this plug-in?

Thank you! :)


[jQuery] jQuery UI accordion

2010-03-03 Thread K1
HI all
I wanna create a accordion with jq UI with this options,
accordion have 5 header and load with header 1 by default,and I wanna
disable other headers  when user click on them.how can I disable
showing content of header when user click on that.
 thanks


[jQuery] problem with ajaxForm

2010-03-03 Thread Abraxas
I NEED HELP PLEASE... IM USING AJAXform and i need send a javascript
variable but i don´t know how i can do that! this is the code:

obs: I need send the form and the array series

//en series[] se almacena cada fila de la tabla
for(var i=0;inumFilas;i++){
var fila=filas[i];
var columnas=fila.cells;
var id_aux=0;
series[i]=columnas[0].innerHTML+-+ 
columnas[1].innerHTML;
}

var opciones = {
target: '#resp',
//clearForm: true,
resetForm:true,
data:series=+series

}

$('#form').ajaxForm(opciones) ;
//var queryString = $('#form').formSerialize();
//queryString=queryString +series=+series;
//$(this).ajaxSubmit(options);
//$.post('respuesta.php', queryString);

I do this but in respuesta.php i don´t receive the data value...please
i need helpp :(


Re: [jQuery] What I need to know?

2010-03-03 Thread Cesar Sanz

jquery does not work with your backend system.. just can init a request and
your server side will handle all that stuffs (like insertions, deletions, 
etc)


regards
- Original Message - 
From: Nathan Klatt n8kl...@gmail.com

To: jquery-en@googlegroups.com
Sent: Tuesday, March 02, 2010 4:00 PM
Subject: Re: [jQuery] What I need to know?



On Tue, Mar 2, 2010 at 3:31 PM, Danjojo dlcac...@gmail.com wrote:

Is it possible with jQuery to update a database / call a stored
procedure when I update an Input box that represents Quantity of an
item?


http://api.jquery.com/category/ajax/

There are some AJAX tutorials targeting jQuery use linked to here:

http://docs.jquery.com/Tutorials 




Re: [jQuery] problem with ajaxForm

2010-03-03 Thread Rey Bango
Abraxas,

Could you please post your question here? http://forum.jquery.com/

That is the official support forum for the jQuery project. We no
longer monitor this Google group.

Thanks,

Rey
jQuery Team

On Wed, Mar 3, 2010 at 9:54 AM, Abraxas abraxa...@gmail.com wrote:
 I NEED HELP PLEASE... IM USING AJAXform and i need send a javascript
 variable but i don´t know how i can do that! this is the code:

 obs: I need send the form and the array series

 //en series[] se almacena cada fila de la tabla
                for(var i=0;inumFilas;i++){
                        var fila=filas[i];
                        var columnas=fila.cells;
                        var id_aux=0;
                        series[i]=columnas[0].innerHTML+-+ 
 columnas[1].innerHTML;
                }

            var opciones = {
                                target: '#resp',
                                //clearForm: true,
                                resetForm:true,
                                data:series=+series

                                }

                $('#form').ajaxForm(opciones) ;
                //var queryString = $('#form').formSerialize();
                //queryString=queryString +series=+series;
                //$(this).ajaxSubmit(options);
                //$.post('respuesta.php', queryString);

 I do this but in respuesta.php i don´t receive the data value...please
 i need helpp :(



[jQuery] Autocomplete, extraParams and this

2010-03-03 Thread olly
Hi there,

been searchin' for a solution for hours, hope someone here can help me
out.

This what I'm trying to do, I have several inputs on one page with
autocomplete. I need to pass a variable based on the input field the
user is in. So I decided to go with having this information as id
value.

I've found several solutions for autocompletes only called by the id,
not the class,

  $(.autocomplete).autocomplete (getAutocompleteValue.php', {
extraParams: { type: $(this).attr ('id') },
  });

Here is a way I found, but I can't get it to work:

  $(.autocomplete).each (function () {
var field = this;
$(field).setOptions({
  extraParams: {
type: function() { return field.id; }
  }
});
  });

By trying this, every autocomplete has the same extra params set as
the first autocomplete.

I think I'm just screwed up by trying for hours, so maybe someone has
a little hint or even a solution for my?

best olly


[jQuery] superfish IE error - pleasee help

2010-03-03 Thread Eddie
Hi All, this is the error i get in superfish menu in joomla

jQuery.noConflict();
jQuery(function($){ $(ul.sf-menu).superfish({hoverClass:'sfHover',
pathClass:'active', pathLevels:0, delay:800, animation:
{opacity:'show'}, speed:'def', autoArrows:0, dropShadows:1}) });
jQuery(window).load( function() {jQuery(ul.sf-
menu).superfish_width_mod({ vertical:0, menuWidth:'100%', equalWidth:
0, resizeSeps:0, resizeSubMenus:0 }) })
jQuery.event.special.hover.delay = 100;
jQuery.event.special.hover.speed = 100;


Now Charlie (another user on this forum) says it could be the window
load function...it isnt, still gives errors, according to the error
report in IE its something to do with the bit around ul.sf-menu on
the fourth line down...any help would be greatly appreciated.

Chris



[jQuery] Block link with lightbox

2010-03-03 Thread raw-m

I'm having a massive headache with this, please help!!

I have a number of divs, each containing an image that launches a lightbox
gallery. A text description is also within the div and underneath each image
describing what's going on (I don't want it as part of the gallery), but it
doesn't contain a link to the lightbox.

Each div (and everything in it) is needed to be the button that launches the
lightbox (ie, clicking the image or the text launches the gallery). How do I
do this? Getting each unique href and rel values (using
.find(a).attr(href).attr(rel)) for each link seems pretty straight
forward but I don't know what to do with them when I've got them!

Any help is much appreciated.
-- 
View this message in context: 
http://old.nabble.com/Block-link-with-lightbox-tp27758652s27240p27758652.html
Sent from the jQuery General Discussion mailing list archive at Nabble.com.



Re: [jQuery] How to add a button

2010-03-03 Thread Cesar Sanz

what???

- Original Message - 
From: podeig denis.pokotyl...@gmail.com

To: jQuery (English) jquery-en@googlegroups.com
Sent: Wednesday, March 03, 2010 8:22 AM
Subject: [jQuery] How to add a button



Hello!

Is it possible to add a button (like standard drop down list has) to
open the list with all the results? I need two ways to select item by
typing and selection from the list.

If not, may be you can add this functionality to this plug-in?

Thank you! :)


Re: [jQuery] Block link with lightbox

2010-03-03 Thread Nilesh Macwan
Hi

*My Understanding as per your email : *you what to pop-up light box on click
on anchor tag or on text. please correct me

*My Explanation : *give specific identification to each element like div
in terms of class, example if div is having image then give myimgclass, if
div is containing text then give  mytextclass, this is an examples, so by
this you can perform each() function from jquery, please visit this link for
more help http://api.jquery.com/each/, and do rest of coding on that
function, more on this if you can upload ur problem on live, and let me have
a look on that, it will great to check on that.

Thanks
Nilesh J. Macwan

On Wed, Mar 3, 2010 at 9:19 PM, raw-m numb...@gmail.com wrote:


 I'm having a massive headache with this, please help!!

 I have a number of divs, each containing an image that launches a lightbox
 gallery. A text description is also within the div and underneath each
 image
 describing what's going on (I don't want it as part of the gallery), but it
 doesn't contain a link to the lightbox.

 Each div (and everything in it) is needed to be the button that launches
 the
 lightbox (ie, clicking the image or the text launches the gallery). How do
 I
 do this? Getting each unique href and rel values (using
 .find(a).attr(href).attr(rel)) for each link seems pretty straight
 forward but I don't know what to do with them when I've got them!

 Any help is much appreciated.
 --
 View this message in context:
 http://old.nabble.com/Block-link-with-lightbox-tp27758652s27240p27758652.html
 Sent from the jQuery General Discussion mailing list archive at Nabble.com.




-- 
Hi,



Thanks

Nilesh J. Macwan