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
For jquery ui datepicker you can "ignore" the datepicker form..
IE:
Lets see the js code:
Now you have the datepicker of jquery ui and the tooltip on same 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.
;)