[jQuery] Problems with jquery.form and multi-file-upload plugins

2009-06-27 Thread goldy
i'm trying to submit the files to a target file that will work with them i have tried the iframe=true parameter but without success please help, what i'm missing //start scrpt var counter = 0; function prepareForm(formname) { var options = { //target:'#ou

[jQuery] Re: onclick event on

2009-04-09 Thread goldy
tr('href')); myparams.pop(myparams); idnum = this.id.replace(/ToggleOpen/,''); buildingedit( searchhtmlid, filename, myparams); return false; }); in html file " href="descriptionsadd.php?add=2&did=&sh

[jQuery] Re: onclick event on

2009-02-20 Thread goldy
issue closed thanks mkmanning for good advising On Feb 14, 4:16 pm, goldy wrote: > hmm, a have tried this > href="descriptionsadd.php?add=2&did=&showhtml=2"> > >         $('a#ToggleClose<?= $did ?>').click(function(){ >              

[jQuery] Re: onclick event on

2009-02-14 Thread goldy
should write it like so: > > > onclick="return myClickHandler(...);" > > > And return false from the function to avoid having the link followed. > > > Note that the attribute should be all lowercase, btw. The camelcase > > version is used when referring to

[jQuery] Re: onclick event on

2009-02-14 Thread goldy
write it like so: > > > onclick="return myClickHandler(...);" > > > And return false from the function to avoid having the link followed. > > > Note that the attribute should be all lowercase, btw. The camelcase > > version is used when referring to it as a

[jQuery] Re: validation with jquery 1.3

2009-02-11 Thread goldy
oh, ye, stupid error my bad On Feb 10, 12:38 pm, Jörn Zaefferer wrote: > There is no maxlenght method, its maxlength. > > Jörn > > On Tue, Feb 10, 2009 at 10:51 AM, goldy wrote: > > > Hei there seems validation works only if all the fields are not > > filled.

[jQuery] onclick event on

2009-02-11 Thread goldy
function buildingedit(searchhtmlid, filename, editid, idnum, addnum, obj) { //closeinst(searchhtmlid); var params = $.evalJSON('{'+editid+':'+idnum+',add:'+addnum +',showhtml:2}'); var myelem = document.getElementById('lastid'); var lastid = myelem.value;

[jQuery] Re: validation with jquery 1.3

2009-02-10 Thread goldy
Hei there seems validation works only if all the fields are not filled. if i fill one of the required fields the validation passes and submit the form. $.validator.setDefaults({ submitHandler: function() { alert("submitted!"); } }); $().ready(function() {

[jQuery] selecting multiple elements containing same word in the id attribute

2009-01-31 Thread goldy
ok, now, my question is how to do that and put those matched ids in an array after that I will have possibility to do what I want. all tha I want to do with jquery here is some test html sorry , if my question is noobish, but I'm a beginner in jquery using