[jQuery] jQuery validation plug-in 1.5.5

2009-10-28 Thread jquery Noob
Hi, why jQuery validation plug-in 1.5.5 don't work with FireFox version 3.5.4?

[jQuery] Why would an id become undefined?

2009-04-30 Thread $(Noob).bee
Are there any debugging tools to trace when/where an element id is defined and then becomes undefined? I'm using: jQuery 1.3.2 with and without the fix at //http://dev.jquery.com/ ticket/4420 http://www.appelsiini.net/download/jquery.jeditable.mini.js http://code.google.com/p/submodal/ (old versi

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread jq noob
> > }); > > but there is flicker effect when you move cursor from div to tabs. > > 2. you can make it without JavaScript at all. You can find examples on > Stu Nicholls' site:http://www.cssplay.co.uk/menu/ > > On 26 мар, 22:08, jq noob wrote: > > > > >

[jQuery] Re: Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-26 Thread jq noob
handler the $tabs variable is not > visible. So try > > $('#tabs').mouseout(function () { >         $("#tabs").tabs('option', 'selected', -1); > > }); > > that should help. > > On 25 мар, 13:44, jq noob wrote: > > >

[jQuery] Jquery UI 1.7.1 Tabs - Close open tab on mouseout from overall tab group

2009-03-25 Thread jq noob
I am currently using $(document).ready(function() { var $tabs = $("#tabs").tabs({ selected: -1, event: 'mouseover', collapsible: true }); I have tried including a .mouseout(function(){ //$tabs.tabs('option', 'selected', -1); $tabs.tabs('se

[jQuery] click event

2009-02-04 Thread jq noob
I want to do a onclick event for anywhere in a table row except for a specific cell. In that cell I want to be able to click a checkbox. I have any # of rows and 12 columns in the table. I usually use a something like this In this instance I also need to allow the user to check on a bunch of ro

[jQuery] Menu Recommendation

2009-01-19 Thread jq noob
I have been using coolmenu4 from http://www.dhtmlcentral.com/projects/coolmenus/ forever ( 7 years seems like forever ) and I was thinking of replacing it with a Jquery based plugin. Can someone point me to a plugin or CSS based menu that can replace this. I would like the menu to be a horizontal

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread jq noob
Thanks everyone for their assistance with this. The noob appreciates it!

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread jq noob
I am trying this and it does not work $(document).ready(function(){ $(':radio').dblclick(function(){ $(this).attr('clicked', false); }); }); It seems that I should be using ~ $(this).attr('checked', false); ?? Thanks On Jan 8, 9:17 am, Eric Garside wrote: >

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread jq noob
n do something with the form data after submitting it. I > assumed he was going to key off the name. Using the name isn't really > a good idea. Like, ever. But he didn't ask how to recode his page, he > asked how to rewrite his function using jQuery mentality. Which I did. I a

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread jq noob
So thanks for the input. Here is what I have as of right now. function uncheckRadio(obj) { var i; var choice = obj.form[ obj.name ]; for (i = 0; i < choice.length; i++) { $('input[name="' + obj.name + '"]').attr('checked', false); } } I gu

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread jq noob
; > On Jan 8, 5:57 am, jq noob wrote: > > > > > Sorry this might be really simple but there is a reason my nickname is > > jq noob! I was wondering how to convert this JS function into proper > > Jquery code. > > > function uncheckRadio(obj) { >

[jQuery] Correct way using Jquery

2009-01-08 Thread jq noob
Sorry this might be really simple but there is a reason my nickname is jq noob! I was wondering how to convert this JS function into proper Jquery code. function uncheckRadio(obj) { var choice = eval("document.editResource." + obj.name); for (i = 0; i < cho

[jQuery] Re: ClueTip style/css question

2009-01-04 Thread jq noob
Therefore, it might be easiest for you to just set a fixed   > width for the table as well. > > Hope one of those suggestions helps. > > --Karl > > > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Jan 4, 2009, at 10:11 PM, jq noob wrote:

[jQuery] ClueTip style/css question

2009-01-04 Thread jq noob
I pull a full html page into the cluetip and the top level element which is a table has this style to center it. style="margin-left:5%; width:90%; margin-right:5%;" The clue tip centers the content but expands the clue tip background and body past the set width so that there is a chunk to the ri

[jQuery] Re: How to call ClueTip direct and pass the Tip as a parameter

2009-01-04 Thread jq noob
I would like to be able to do something similiar but maybe I am just missing the simple solution for what I really need to do. I want to show a clue tip when the user clicks into textarea box. In the onlclick event I want to pass two parameters to a javascript function that then runs the cluetip a

[jQuery] Re: .net generated JSON failing in mozilla, works in ie7

2008-10-15 Thread noob
uses On Oct 15, 7:33 pm, noob <[EMAIL PROTECTED]> wrote: > I feel like an idiot but I can't get getJSON to work in firefox - can > anyone give me a pointer? > > here is the code - top function is the jquery documentation demo code > which works in IE and

[jQuery] .net generated JSON failing in mozilla, works in ie7

2008-10-15 Thread noob
I feel like an idiot but I can't get getJSON to work in firefox - can anyone give me a pointer? here is the code - top function is the jquery documentation demo code which works in IE and firefox. bottom version never hits the alert: $(document).ready(function(){ $.get