[jQuery] jQuery Ajax, getting data returned from my PHP script

2009-01-16 Thread gemmes
from my ajax- validation.php script. Can anyone help?? many thanks gemmes // SELECTED JAVASCRIPT /* AJAX Form */ $('#submit').click(function() { // using click instead of blur while in development var name = $('input#name').val(); var email = $('input#email').val(); var message

[jQuery] Re: jQuery Ajax, getting data returned from my PHP script

2009-01-16 Thread gemmes
hhmmmpppf yep that helps, getting data returned now. many thanks On Jan 16, 5:24 pm, Stephan Veigl stephan.ve...@gmail.com wrote: try:   echo$ajax_validation_response; instead of   return $ajax_validation_response; in your PHP script

[jQuery] jCarousel - How do I reset animation time

2008-12-01 Thread gemmes
in the right direction? gemmes Main Code: script type=text/javascript /** * We use the initCallback callback * to assign functionality to the controls */ function mycarousel_initCallback(carousel) { jQuery('.jcarousel-control a').bind('click', function() { carousel.scroll

[jQuery] nooby question

2008-10-23 Thread gemmes
Hi All, I want to change the border color of a div to white and at the same time change text inside to white. So Im doing something like this: $(#frame div).hover( function(){ $ (this).css({borderColor:#ff}).filter(h5).css({color:#fff}); }, function() { // another function

[jQuery] Re: nooby question

2008-10-23 Thread gemmes
Cheers this works perfectly. On Oct 23, 12:44 pm, Joel Birch [EMAIL PROTECTED] wrote: Hello, You need to use .find() instead of .filter() for what you are trying to do. Another thing to consider would be to simply add and remove a class on hover, rather than applying the styles directly.

[jQuery] Printing this page button

2008-10-20 Thread gemmes
Hi all, I have a print.css stylesheet attached to a page on my site. When I click on my print icon I want to go to the Print Properties window. I need this to work in all browsers. Is there a way to do this with jQuery? Is there a plugin? etc. pls help gemmes

[jQuery] Re: Printing this page button

2008-10-20 Thread gemmes
This does not work in IE6 for me. IE7 FF fine. I have not tried Opera, Safari yet. thanks anyway On Oct 20, 3:03 pm, tlphipps [EMAIL PROTECTED] wrote: window.print(); Just standard javascript. On Oct 20, 7:39 am, gemmes [EMAIL PROTECTED] wrote: Hi all, I have a print.css stylesheet

[jQuery] Re: Printing this page button

2008-10-20 Thread gemmes
Hmm... window.print() does not work on my IE6 browser but seems to work for other people. thanks for your help gemmes On Oct 20, 3:54 pm, tlphipps [EMAIL PROTECTED] wrote: That javascript method is fully supported in IE6.  We use it all the time. On Oct 20, 9:26 am, gemmes [EMAIL

[jQuery] Re: $(div.tabs div.containers) in Safari 3

2008-08-28 Thread gemmes
Thank you for replying, and for new script you did for me. However, this script does work fine in Safari 3 when i dont use the as a CSS selector, I was just wondering why it did not work with in Safari thanks gemmes

[jQuery] $(div.tabs div.containers) in Safari 3

2008-08-27 Thread gemmes
Hi, I have been learning Jquery and been following along from a tutorial I found online. I have used the latest jquery file, the tutorial is few months old. The script below does not work in Safari because I used the following selector : $('div.tabs div.containers') instead of $('div.tabs