[jQuery] Re: jquery validate plugin. remote problem

2009-04-01 Thread david.0pl...@gmail.com
or the remote method are > here:http://docs.jquery.com/Plugins/Validation/Methods/remote > A demo, including PHP examples, > here:http://jquery.bassistance.de/validate/demo/milk/ > > Jörn > > On Wed, Apr 1, 2009 at 11:22 AM, david.0pl...@gmail.com > > wrote: >

[jQuery] jquery validate plugin. remote problem

2009-04-01 Thread david.0pl...@gmail.com
Hi, I'm sorry to bother, but I can't find enough documentation on this plugin I have this cose: $(document).ready(function(){ $("#form_reg").validate({ rules: { username: {required:true, minlenght:5, remote:"check_user.php"}, password: {r

[jQuery] Re: Cross-Domain Jquery event?

2009-03-20 Thread david.0pl...@gmail.com
I just wanted to thank you, those link helped me achieve what I wanted to do I learned a lot today, thank you! David On Mar 20, 11:23 am, Martin Möller wrote: > david wrote: > > in fact the .centerPopup > > resides on a completely different domain. > > Now is there a workaround for this? > > De

[jQuery] Cross-Domain Jquery event?

2009-03-20 Thread david.0pl...@gmail.com
I ask you gurus of jquery because I have no clue if this thing is even possible: I'll try to explain: I have several domains, which resides on the same server, on top of the page of each domain there's an with the same content for every domain (there's a precise reason for this but it's complex

[jQuery] Re: Is it possible to override a link?

2009-02-24 Thread david.0pl...@gmail.com
Thank you very much, i never tought it would turn out so simple! Is it also possible to do this with an onclick? On 23 Feb, 20:55, Kean wrote: > There are a couple of options, depending on your needs. > > $('a#woof').click(function(e){ > e.preventDefault(); > //do ajax form > > }); > > $('a#woo

[jQuery] Is it possible to override a link?

2009-02-23 Thread david.0pl...@gmail.com
I have one link: Form then I have: $('a#woof').click(function() { do ajax form } I've done this to make the user without javascript still able to see the form, the problem is that it follows the link even when java is enabled.. how can I avoid this? Thanks

[jQuery] ajax post with tinymce

2009-02-13 Thread david.0pl...@gmail.com
I need to have this: function nuovo_articoloPOST(){ //Se e solo SE il form è stato validato if($("#nuovo_articolo").valid()) { //Assegna alle variabili il nome del campo! var imageName = $("#imageName").attr("value"); var titolo

[jQuery] Re: ie7 - Depth of elements wrong (sperinposed)

2009-02-13 Thread david.0pl...@gmail.com
Look like the problem come from somewhere else: http://www.0plus1.com/google-groups.php I added your fix but it still doesn't work, looks like only the a tag of the newsticker get overimposed! On Feb 13, 12:33 pm, "david.0pl...@gmail.com" wrote: > Thank you, I kinda overloo

[jQuery] Re: ie7 - Depth of elements wrong (sperinposed)

2009-02-13 Thread david.0pl...@gmail.com
Thank you, I kinda overlooked this one, hope it will help somebody else! On Feb 13, 11:22 am, Joel Birch wrote: > Hello, > > This is a common IE z-index bug. Here is a page which details it and > provides the > solution.http://webdemar.com/webdesign/superfish-jquery-menu-ie-z-index-bug/ > > For

[jQuery] ie7 - Depth of elements wrong (sperinposed)

2009-02-13 Thread david.0pl...@gmail.com
I want to use these two plugins: Superfish: http://users.tpg.com.au/j_birch/plugins/superfish/ LiScroll: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/newsticker/jq-liscroll/scrollanimate.html The site WAS ready until I tried it with ie7, with it the news that scroll gets rendered ov

[jQuery] ajax style form, how to pass the php $_FILE variable?

2009-02-05 Thread david.0pl...@gmail.com
Disclaimer: I know there are plugins for this but I'm trying to learn to do things myself before using other people solutions! I have a nice form that send data like this: var nome = $("#nome").attr("value"); var hyperlink = $("#hyperlink").attr("value"); var gruppi = $("#gruppi").attr("value");

[jQuery] Re: jquery validation on non java complaint browser

2009-02-03 Thread david.0pl...@gmail.com
lidation - anything on the clientside can be disabled. An > attacker wouldn't even have to use a browser to submit the form. > > In other words: Implement both. Serverside for security and data > integrity, clientside for a better user experience. > > Jörn > > On Tue, Fe

[jQuery] Re: Why does it conflict?

2009-02-03 Thread david.0pl...@gmail.com
Mhhh still I would love to understand why this happens, this is the situation: update.php has before the head: The script works as normal, then it has a preview of the banner that outputs this html in the middle of the page (between the body tags and inside a div)

[jQuery] jquery validation on non java complaint browser

2009-02-03 Thread david.0pl...@gmail.com
Since I started messing around with jquery, I'm astonished on how simple a java web form validation is.. the problem is when a person has a non java brower or disable it, then basically the java validation is useless! Now, since I use php I also have the standard server side validation but I was

[jQuery] Re: Why does it conflict?

2009-02-03 Thread david.0pl...@gmail.com
ere > the issue lies if you're sure it's in the banner code. > > On Feb 2, 6:43 am, "david.0pl...@gmail.com" > wrote: > > > Hello, I'm developing an open source banner server, and I encountered > > a strange behaviour. > > > First of al

[jQuery] [validate plugin] Why does it conflict?

2009-02-02 Thread david.0pl...@gmail.com
Hello, I'm developing an open source banner server, and I encountered a strange behaviour. First of all the banner system uses jquery (apart from validation) to rotate the banners, using this code: var image_count; var current_image=0; $(document).ready(function(){ image_count = $("div.img-rot

[jQuery] Re: Damn ie7!

2009-01-30 Thread david.0pl...@gmail.com
Ok, thank you very much i got this! Also, just to know is there any site/books that specifically 'speaks' about the limitations of the various web browsers? On Jan 30, 8:31 pm, MorningZ wrote: > So what he talks about > > function showHide() { >   if ($(this).val() == "1") { $('#datasingola').hi

[jQuery] Damn ie7!

2009-01-30 Thread david.0pl...@gmail.com
Hi to everybody, it's my first post here so it's nice to introduce myself: "my name is David, i currently live in Italy, nice to meet you all and many thank for this wonderful jquery!". I'm starting to get a grasp of jquery (i used prototype before and i find jquery a lot more easy to work with) b