You will recieve your password to this address. Address is not made public.

Your preferred username that is used when logging in.

Forum user: Scoup

Basic information

Registered Apr 21, 2010
Last login Jul 2, 2011
Forum posts 2
Direct URL http://www.flowplayer.org/forum/users/26588

Latest forum posts

Posts:

Registered:

» php forms, no page refresh, I need help please

Posted: Apr 21, 2010

Look this plugin:
http://jquery.malsup.com/form/

Read about ajax submit.

Posts:

Registered:

Datepicker and tooltip

Posted: Apr 21, 2010

For jquery ui datepicker you can "ignore" the datepicker form..
IE:

<form>
  <input 1...>
  <input 2....>
  <input class="datepicker">
</form>

Lets see the js code:


$(".datepicker").datepicker();
$("form :input:not(.datepicker)").tooltip();

Now you have the datepicker of jquery ui and the tooltip on same form.

;)