[jQuery] Re: Newbie validator question/problem

2009-11-16 Thread Henry
On Nov 15, 2:45 am, sprach wrote: snip ... . In the code above, firebug claims that form.submit() is not a function. The DOM allows named form controls to be accessed as named properties of the FORM element object. However, the FORM elements have a set of properties/methods of their own,

Re[jQuery] garding Tablesorter

2009-11-08 Thread Henry Loke
Regarding Tablesorter [http://tablesorter.com/] My table contain the column called No. ( Number ). No., Name, Age, When I sorted by Name, The arrangement of No. sorted. Is there has a way, to dead fixed on No. column ( Column No. not sorted example it will showed 1., 2., 3. ...etc) but able

[jQuery] Dropdown menu top and left border Superfish

2009-06-19 Thread Henry
Hi, How can I take off the top and left border that shows on my menu? Thx Henry

[jQuery] Re: Invalid Argument in IE7/8

2009-03-13 Thread Henry
Nic Hubbard wrote: Ok, I removed all instances of the cycle plugin when it is not needed. But, this has not fixed the problem in IE7/8. Why would it be saying that jQuery.js is the file with the problem? IE browser throw an invalid argument error when attempts are made to apply nonsensical

[jQuery] Re: JQuery effects not working in Internet Explorer 6

2009-02-06 Thread Henry
On Feb 6, 10:30 am, Tintin81 wrote: I am new to Javascript and implemented a few nice JQuery features on a href=http://new.designbits.de;my new website/a . All of them work great in Firefox and Safari. In IE6, however, the site looks like a mess, even with Javascript enabled in the options

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread Henry
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. Correct and proper are going to be very much influenced by various people's opinions. You have not explained what - obj - is

[jQuery] Re: Correct way using Jquery

2009-01-08 Thread Henry
Eric Garside wrote: $('input[name=' + obj.name + ']').attr('checked', false); snip And if the same page contains INPUT elements with the same name either inside another form or outside of any form? It seems like a good idea to use - obj.form - to restrict the context of the search, and even if

[jQuery] Re: warning: jquery in firefox 3

2008-11-28 Thread Henry
On Nov 27, 5:58 am, codz wrote: hello everyone, i just want to ask anybody about this warning that always show whenever my page load with the jquery.js file. Warning: test for equality (==) mistyped as assignment (=)? Source File:http://localhost:2008/jquery.js Line: 1161, Column: 32

[jQuery] would compressing merging multiple jquery plugin's violate any license?

2008-11-10 Thread henry
would compressing merging multiple jquery plugin's into 1 JS file violate any license?

[jQuery] Re: validate - integrating with wordpress

2008-10-31 Thread Henry
OMG! That's perfect! thank you. On Oct 30, 6:32 pm, Mason [EMAIL PROTECTED] wrote: Henry, this should help: http://nettuts.com/tutorials/wordpress/adding-form-validation-to-word... On Oct 30, 6:54 pm, Henry [EMAIL PROTECTED] wrote: I'm sorry. Maybe I'm over my head here. But I found

[jQuery] validate - integrating with wordpress

2008-10-30 Thread Henry
. Again, sorry for being so green on this. Sincerely, Henry

[jQuery] Re: Toggle doesn't perform well in Safari and crashes Chrome

2008-09-13 Thread Matt Henry
toggle() takes two functions as arguments, so your $(div#menuchild_1).toggle( SHOW_FUNCTION HIDE_FUNCTION ); On Sep 12, 4:32 pm, robertaugustin [EMAIL PROTECTED] wrote: Hi, I'm having a problem with jquery's toggle function in Safari 3.1.2 and Google Chrome, maybe one of you knows the issue

[jQuery] Re: How to load remoate jquery code with document.write() that works with IE6/7?

2008-09-11 Thread henry
document.write() might work for you :) On Sep 10, 4:39 pm, henry [EMAIL PROTECTED] wrote: I have a problem with IE (6 7) when I have something like this: script type=text/javascript src=http://domain.com/ generateCode.php/script and the server returns HTML and JS in place using document.write

[jQuery] How to load remoate jquery code with document.write() that works with IE6/7?

2008-09-10 Thread henry
I have a problem with IE (6 7) when I have something like this: script type=text/javascript src=http://domain.com/ generateCode.php/script and the server returns HTML and JS in place using document.write(), such as: script type=text/javascript document.write(' div id=xTESTING/div

[jQuery] Re: chaining and functions

2008-09-02 Thread Henry
On Sep 2, 1:09 pm, jan wrote: Hi, another starter question: I do not understand why $('#content').empty().append(bhello/b); works, and this works $('#content').empty().append(makeContent()); ^ makeContent() - is a function call, where -

[jQuery] Re: Why does my closure not seem to share scope?

2008-07-25 Thread Henry
On Jul 25, 3:17 am, Karl Rudd wrote: The i in the click function (closure) is just a reference to the i outside. That i changes with each iteration of the for loop. If you want to save a copy of the value of i then create a _local_ var _inside_ the closure and assign it the value of i.

[jQuery] Re: Passing scope to a nested anonymous function

2008-06-19 Thread Henry
On Jun 19, 4:04 am, Ariel Flesler wrote: On 18 jun, 17:45, meppum wrote: }).call(this.foo2); --- }).call(this); While that answer would be superficially effective (in the sense of resulting in code that would behave as specified) it is a stupidly inefficient approach, and so not something that

[jQuery] [Tooltip] Display relative to element

2008-06-11 Thread Henry
It looks lie the tooltip plugin will display relative to the mouse, but is there a way to have it displayed relative to the element that you hover over and set x-y coordinates from it. For example, I would like to always display the tooltip with x coordinate of 15 and y- coordinate of -15

[jQuery] Re: Manipulating content generated after $(document).ready

2008-04-30 Thread Matt Henry
() chain. On Tue, Apr 29, 2008 at 2:19 PM, Matt Henry [EMAIL PROTECTED] wrote: I'm wondering if it's possible to use jQuery to manipulate content that has been generated by jQuery after the page has loaded. Here's what I'm trying to accomplish: The user clicks a span in a long block

[jQuery] Manipulating content generated after $(document).ready

2008-04-29 Thread Matt Henry
I'm wondering if it's possible to use jQuery to manipulate content that has been generated by jQuery after the page has loaded. Here's what I'm trying to accomplish: The user clicks a span in a long block of text, and that span is cloned, wrapped in list tags, and appended to a ul at the end of

[jQuery] Validation jQuery plugin - onfocusout throws error

2008-03-07 Thread henry
jquery: 1.2.3 jquery validation plugin: 1.2.1 I have: form id=myform name=myform ... /form $().ready(){ $(#myform).validate({onfocusout:true}); } firebug error message validator.settings[on + event.type].call is not a function on jquery.validate.js line 250 same error msg is thrown with

[jQuery] Re: Validation jQuery plugin - onfocusout throws error

2008-03-07 Thread henry
, but my form element is not validated on blur, why? Thank you. On Mar 7, 9:00 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: henry schrieb: jquery: 1.2.3 jquery validation plugin: 1.2.1 I have: form id=myform name=myform ... /form $().ready(){ $(#myform).validate

[jQuery] $.ajax success/error callback arguments, textStatus?

2008-03-05 Thread henry
reference: http://docs.jquery.com/Ajax/jQuery.ajax#options What exactly is textStatus of the success and error callback argument? Being a coldfuision user, I tried: cfheader statuscode=403 statusText=testing123 However, the textStatus is always the default value. Any idea how to set

[jQuery] result of 1.5b sortable(serialize), into an array of id?

2008-02-15 Thread henry
I'm not familiar with the format of the result of sortable(serialize). See demo: http://dev.jquery.com/view/trunk/ui/demos/ui.sortable.html , click Serialize! How to convert it into an array of id? Thank you!

[jQuery] Does jQuery script has to be in one physical place?

2007-12-28 Thread henry
I usually have my jQuery code near the end of the BODY tag. However, this app I'm working on requires many ajax call to inject certain tab into the DOM, with each tag needing their own jQuery code. Can the jquery code be inside the ajax requested page so that I can seperate the JS code, and put

[jQuery] Re: Accordion v1.5 and interface together cause accordion to stop working

2007-08-31 Thread henry
Hi, Do I just do a search and replace? Can you maybe share your modified interface.js that's compatible with the latest jQuery with us? Thanks. Henry On Aug 31, 1:39 pm, Klaus Hartl [EMAIL PROTECTED] wrote: The problem is that interface overwrites jQuery's own animate function

[jQuery] Re: Interface Elements jQuery

2007-08-30 Thread henry
How can I make a list be both Sortables Selectables (and maybe Droppable)? Is it even possible? I can only get one working on the same list. Thank you, Henry On Jul 16, 3:03 pm, skube [EMAIL PROTECTED] wrote: Thanks for your response Richard. On Jul 13, 9:05 pm, Richard D. Worth [EMAIL

[jQuery] Re: jQuery 1.1.4: Faster, More Tests, Ready for 1.2

2007-08-29 Thread henry
1.1.4 breaks Interface, firebug reports: jQuery.easing[options.easing] is not a function z.now = jQuery.easing[options.easing](p, n, firstNum, (last-firstNum), options.duration); jquery.js line 5214 help? thx.

[jQuery] Re: Fading element opacity problem using Interface FX!!!

2007-08-29 Thread henry
I can't imagine this bug still exists in jQuery 1.1.4. Firefox firebug output: -- jQuery.easing[options.easing] is not a function z.now = jQuery.easing[options.easing](p, n, firstNum, (lastNum- firstNum, options.durations); jquery.js (line 5214) -- Help! What should I do now?

[jQuery] jQuery 1.1.4 incompatible with Interface 1.2

2007-08-29 Thread henry
When I use Sortables with fx:n , Firefox firebug output: -- jQuery.easing[options.easing] is not a function z.now = jQuery.easing[options.easing](p, n, firstNum, (lastNum- firstNum, options.durations); jquery.js (line 5214) -- According to the following thread, this bug