[jQuery] Re: .html() ignoring updated input value

2009-08-20 Thread resetstudio
; For what purpose are you "saving" the state of the form? Maybe there > are workarounds depending on what you're trying to achieve. > > On Aug 18, 7:29 am, resetstudio wrote: > > > Hi everybody, how are you? > > I have to save the state of a form in a var bef

[jQuery] .html() ignoring updated input value

2009-08-18 Thread resetstudio
Hi everybody, how are you? I have to save the state of a form in a var before submitting it with the whole html, but if I alert the var, I get the original html without the updated input fields. Example: I have and I fill that field with "hahahah", on $("div").html() i get "" and not "".

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-30 Thread resetstudio
Karl Thank you for this: -- 1. On the main sicilianidoc logo, you're using the image-replacement technique. This is great, but in Firefox, when the link becomes "active" the dotted border goes all the way off to the left of the page, because of the text-indent: -2000px; . Thi

[jQuery] Re: Our New (and first) Ajax E-Commerce project using jQuery

2007-11-30 Thread resetstudio
Karl Thank you for this: -- 1. On the main sicilianidoc logo, you're using the image-replacement technique. This is great, but in Firefox, when the link becomes "active" the dotted border goes all the way off to the left of the page, because of the text-indent: -2000px; . Thi

[jQuery] Our New (and first) Ajax E-Commerce project using jQuery

2007-11-28 Thread resetstudio
Visit www.sicilianidoc.it to give it a try. It's developed using php and massive jquery and the javascript source is not yet packed, so you can read the source and give me some (hopefully positive) comments. It's crossbrowser (ie 6 supported, ps: there is a bug in jQuery with hover event in ie6 u

[jQuery] retrieve values from func that calls a $.post

2007-11-11 Thread resetstudio
Hi guys! I'm having some problem, because I'm rearanging my programming method. I have the shoppingcart object, and it can fire many methods. But for examples i have a method "shoppingcart.set(id,prop,value);" that makes an ajax call via $.post and set for example the prop "quantity" to 5 in th

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread resetstudio
I think this is a great plugin. Malsup makes me happy already with his dimensions plugin (ok it is not perfect, all the divs that are containing floats return 0px as height then i have to use float:left on the container to discard this problem), and this livequery, wow, is what i've looked for. Th

[jQuery] Re: PHP jsoner ver 0.9

2007-10-31 Thread resetstudio
I know it, but my hoster does not support php 5 and to install extension. I have tried http://mike.teczno.com/json.html and worked for a while. It seems that this phpclass has some issues with accent and some other special chars. this function is short and easy to use, i will add the check is_num

[jQuery] PHP jsoner ver 0.9

2007-10-31 Thread resetstudio
Hi! I want to share with you a simple function that thakes an associative array returned from a mysql_fetch_assoc() and outputs a json object; usage: in php print "var response=".jsoner($ar); //where $ar is somethin like that :> array(0=>array("id"=>"3","title"=>"hello world"), 1=>array("id"=>"6

[jQuery] Re: AjaxForm to $_SERVER["PHP_SELF"] = Dosent Work!

2007-10-31 Thread resetstudio
Hi! This happens because you use $_SERVER after an html output. You shoud set a variable after " (where you forgot to use the print constructor and the ";") ... And should work!

[jQuery] Checkboxes and IE

2007-07-09 Thread resetstudio
Hi guys! I'm having some trouble with checkboxes in IE... so.. after the pageloading i want to check all and i've tryed with attr({checked : "checked"}) , attr({checked : "true"}) , usign dom el.checked=true , but nothing... can someone help me?