[jQuery] Re: Error: $(document).ready is not a function

2007-05-10 Thread Fabyo Guimaraes
or $(function() { }); 2007/5/10, John Resig <[EMAIL PROTECTED]>: It sounds like Prototype is overwriting jQuery's $ function. If you want to continue using the two libraries together, you'll need to refer to jQuery's $ function as 'jQuery', like so: jQuery(document).ready(function(){ //..

[jQuery] Re: Reload page

2007-05-03 Thread Fabyo Guimaraes
location.reload(); 2007/5/3, Massimiliano Marini <[EMAIL PROTECTED]>: Hi all, It is possible to recharge the entire page like a refresh? If yes how? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ "It's easier to invent the future than to predict it." -- Alan Kay

[jQuery] Re: jQuery Tabs: activate on rollover instead of click?

2007-04-27 Thread Fabyo Guimaraes
http://stilbuero.de/jquery/tabs/mouseover.html if to select the text tab 2 change active tab1 etc... 2007/4/27, Fabyo Guimaraes <[EMAIL PROTECTED]>: its example not this functionary, is not practises ** 2007/4/27, Klaus Hartl < [EMAIL PROTECTED]>: > > > Fabyo Guim

[jQuery] Re: jQuery Tabs: activate on rollover instead of click?

2007-04-27 Thread Fabyo Guimaraes
its example not this functionary, is not practises ** 2007/4/27, Klaus Hartl <[EMAIL PROTECTED]>: Fabyo Guimaraes schrieb: > It tries to select a text, dumb it of pagina this not is good > > it uses the effect only on of the border and not of the document all I'm s

[jQuery] Re: Replacing the contents of a div that uses newsticker plug-in

2007-04-27 Thread Fabyo Guimaraes
Use jquery = ) $(document).ready(function() { $("#news").newsTicker(); } ); function showdiv() { $("#news").css("display", "block"); } function hidediv() { $("#news").css("display", "none"); } function replacecontents() { $("#news").html("Replaced 1Replaced 2Replaced 3Replaced 4");

[jQuery] Re: jQuery Tabs: activate on rollover instead of click?

2007-04-27 Thread Fabyo Guimaraes
It tries to select a text, dumb it of pagina this not is good it uses the effect only on of the border and not of the document all 2007/4/27, Klaus Hartl <[EMAIL PROTECTED]>: Fabyo Guimaraes schrieb: > > I did not like, and of bug Pardon? What do you mean and what exactly are

[jQuery] Re: jQuery Tabs: activate on rollover instead of click?

2007-04-27 Thread Fabyo Guimaraes
I did not like, and of bug 2007/4/27, [EMAIL PROTECTED] <[EMAIL PROTECTED]>: D'oh, sorry Klaus! Terribly sorry. Thanks for the link :) Brian On Apr 26, 5:18 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] schrieb: > > > Is it possible to change Karl's tab plugin to activat

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread fabyo . php
Thanks i desenvolv datagrid +- http://extjs.com/deploy/ext/docs/ Inline editing -> 2 cliques in date visibled datepiker I you trying to make one grid using its to datepiker thanks On 24 abr, 06:54, "Kelvin Luck" <[EMAIL PROTECTED]> wrote: > Hi, > > I'd like to announce the beta release of v2

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabyo Guimaraes
Thanks a lot I go to try to make my projet is only use jquery http://www.fabyoguimaraes.com/jquery/tabela/ I love jquery thanks return 2007/4/24, Diego A. <[EMAIL PROTECTED]>: > > > I'd just come across a scenario where events would have made > datePicker more flexible and was thinking of pass

[jQuery] Re: datePicker v2 beta

2007-04-24 Thread Fabyo Guimaraes
http://www.fabyoguimaraes.com/jquery/tabela/ 90% complete using its example datePicker with multiple select<http://kelvinluck.com/assets/jquery/datePicker/v2/demo/datePickerMultiple.html> thanks, = ) 2007/4/24, Fabyo Guimaraes <[EMAIL PROTECTED]>: > > Thanks a lot I go to

[jQuery] Re: to change tab for enter

2007-04-18 Thread Fabyo
gt; Just a first attempt, I don't like it, and you need to add a few lines > of code ; ) > > $("[EMAIL PROTECTED]").bind("keydown",function(e){ > if (e.keyCode == 13) { > tabIndex = parseFloat($(this).attr("tabindex")) + 1; >

[jQuery] Re: to change tab for enter

2007-04-17 Thread Fabyo
Included for list forms: http://docs.jquery.com/Plugins#Forms Fabyo wrote: > > Thanks > very much thanks > > > BethaSidik wrote: >> >> I've created the plugin for this purposes, name is enter2tab plugin. >> This plugin created for my project, that

[jQuery] Re: to change tab for enter

2007-04-17 Thread Fabyo
Thanks very much thanks BethaSidik wrote: > > I've created the plugin for this purposes, name is enter2tab plugin. > This plugin created for my project, that develop a web application that > behave like normal window application, which can use enter to move on the > next field. > > The plugi

[jQuery] Re: to change tab for enter

2007-04-16 Thread Fabyo
{ > tabIndex = parseFloat($(this).attr("tabindex")) + 1; > $("[EMAIL PROTECTED]")[tabIndex].focus(); > return false; > } > }); > > > 2007/4/16, Fabyo <[EMAIL PROTECTED]>: >> >> >> [b]onsubmit[/b] = (

[jQuery] Re: to change tab for enter

2007-04-16 Thread Fabyo
[b]onsubmit[/b] = ( is use Unobtrusive JavaScript Leonardo K wrote: > > Start tabindex with number 1. > > Without label: > > >Campo 1: >Campo 2: >Campo 3: >Campo 4: >Campo 5: > > > > With label: > > >Campo1: name="campo1" >

[jQuery] Re: to change tab for enter

2007-04-16 Thread Fabyo
It functioned perfect, but it would have as to function without using labels? my formu: Campo 1: Campo 2: Campo 3: Campo 4: Campo 5: Roberto Ortelli wrote: > > > Fabyo, > pay attention, the solution below only works i

[jQuery] Re: to change tab for enter

2007-04-16 Thread Fabyo
not function exemple is not corret http://fabyoguimaraes.com/jquery/troca.html thanks Roberto Ortelli wrote: > > > Fabyo, > pay attention, the solution below only works if you have a form like that: > > One > Two > Three > > >> $("[EMAI

[jQuery] to change tab for enter

2007-04-16 Thread Fabyo
$("[EMAIL PROTECTED]").keydown(function(e){ if (e.keyCode == 13) { $("[EMAIL PROTECTED]", this).next(); } }); ? help thanks -- View this message in context: http://www.nabble.com/to-change-tab-fo