[jQuery] jQuery broken in FF3.5b99 (Preview)

2009-06-09 Thread benjam
I'm sure support for a beta release is a bad thing to be asking for, but I mostly just want to make sure I'm not going crazy (and to inform the devs of a possible issue). I have the current FF 3.5b99 (Preview Release) and am playing around on a WordPress (v2.7.1) installation on my dev box, and i

[jQuery] Re: toggle checkbox when clicking

2009-02-02 Thread benjam
Another method that I use to do the very same thing (1.2.6) $('tbody tr').click( function(event) { if ($(event.target).is('input')) { return; } var $input = $(this).find('input'); if ($input.length)

[jQuery] Re: Trouble with Facebox and Ajax submitted form

2008-12-04 Thread benjam
stead of an ID, and used livequery to act on all added elements. This fixed the issue. On Dec 3, 10:57 pm, benjam <[EMAIL PROTECTED]> wrote: > I have a form inside a div that is shown via Facebox. > > I seem to be having troubles getting the form to submit via ajax, it > always w

[jQuery] Trouble with Facebox and Ajax submitted form

2008-12-03 Thread benjam
I have a form inside a div that is shown via Facebox. I seem to be having troubles getting the form to submit via ajax, it always wants to submit normally. Here is a test page: http://www.iohelix.net/misc/chat_test/ Any suggestions would be appreciated.

[jQuery] Re: jqRevolve - new, simplistic carousel-like plugin released!

2008-11-13 Thread benjam
Doesn't work at all for me. FF 3.0.3 on Vista On Nov 12, 3:38 pm, Brice Burgess <[EMAIL PROTECTED]> wrote: > Ladies and Gentlemen, > >   I'm writing to inform you all of a new addition to the jQuery plugin > family... Please welcome jqRevolve! > >   jqRevolve is a carousel-like plugin for jQuery.

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-18 Thread benjam
; > ____ > Karl Swedbergwww.englishrules.comwww.learningjquery.com > > On Sep 17, 2008, at 9:50 AM, benjam wrote: > > > > > This is insanely kludgy, not very pretty, and probably slower than a > > more elegant solution. > > > But it works.

[jQuery] Re: Hover on all elements: $(*).hover(...)

2008-09-17 Thread benjam
This is insanely kludgy, not very pretty, and probably slower than a more elegant solution. But it works. $('*').hover( function(event) { var $this = $(this); $this.addClass('selected'); $this.parents

[jQuery] Issues with .css( )

2008-07-18 Thread benjam
I have looked and looked, and I get the same error everytime I try to use the .css( ) function with { }: missing : after property id Here is my code: $(this).css({ font-weight: 'bold', font-size: 'larger' }); Maybe a fresh pair of eyes will help?

[jQuery] Running script onLoad instead of ready

2008-07-09 Thread benjam
Maybe I'm missing something totally obvious, but I was trying to get an alert to fire after some of the page loads, (but before ().ready). I tried the following: $('body').load( function( ) { alert('Hello World'); } ); with no effect. I also tried it with some of the other elements on the page.

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-06 Thread benjam
I kinda figured that it was an anonymous function, but the outer parens were kinda throwing me off. Thanks for the info. On Jul 4, 2:38 pm, "Aaron Heimlich" <[EMAIL PROTECTED]> wrote: > On Fri, Jul 4, 2008 at 3:08 PM, benjam <[EMAIL PROTECTED]> wrote: > &

[jQuery] Re: Why (function($){ ...})(jQuery) instead of (function(){var $ = jQuery; ...})()?

2008-07-04 Thread benjam
Slightly off topic question... What exactly does (function($){ ... })(jQuery) do? How does it work? I understand what it basically does, how it treats $ like jQuery, but how does that notation do that, exactly?

[jQuery] Re: checkbox manipulation and toggle()

2008-05-30 Thread benjam
Although you need to make sure that you set the for attribute o the label tag to the id attribute of the input tag, NOT the name attribute. One way to get around this issue (and the recommended method) is to set the name and id attribute of the input tag the same. If you wrap the input tag with th

[jQuery] Re: Problems appending inputs with quotes in the value

2008-02-06 Thread benjam
Charles wrote: > You could change the quoted quotes to an html entity. > > $('form').append(''); Gotta love that second pair of eyes. Didn't even think of that. Works great, thanks.

[jQuery] Problems appending inputs with quotes in the value

2008-02-06 Thread benjam
I am trying to append an input box with quotes in the value, and no matter how many escapes I put on the quote (thinking maybe the escapes needed to be escaped), it fails to insert properly, like jQuery just ignores all escapes and goes straight for the quote. i.e.- If I try something like the fo

[jQuery] Re: Problems with Interface Sortables

2008-01-15 Thread benjam
Ok, I got it fixed. For anybody else who may be having the same issues, try removing the following from your Sortable setup: containment: 'parent' that is what was breaking the script, not sure why, but it was.

[jQuery] Re: Problems with Interface Sortables

2008-01-15 Thread benjam
Ok, if nobody has any suggestions for my problem, is there another way that I can allow users to re-order elements on screen and get the order of those elements upon form submission?

[jQuery] Re: Problems with Interface Sortables

2008-01-10 Thread benjam
Anybody?

[jQuery] Problems with Interface Sortables

2008-01-09 Thread benjam
u are grabbing relative to the element goes outside of the element. It's hard to explain, just move things around for a bit, and I'm sure you'll see it. What, if anything, have I done wrong, and how might I get it to work as expected. Thanks for any help you may be able to offer. ~Benjam

[jQuery] Problem with unbind and submit

2007-11-27 Thread benjam
I have a form where the contents of the form are validated with the jQuery Validation Plugin. I am also using a custom submit handler to ajax post the data to a third party, but I also wish to post the data to the form normally. Inside of the validation plugin, there is a section that returns fal

[jQuery] [Webpage] Mastermind game

2007-11-21 Thread benjam
classes (I've never really played with these before) and i just wanted to add a new game to my games list So... let me know where I might make improvements. The main 'feature' of the game is the instructions, click that and follow along. http://www.iohelix.net/mastermind.html ~Benjam

[jQuery] Re: Select > Option (find class of option)

2007-11-06 Thread benjam
Please tell us what you did to get it working. And this goes for all other people asking questions and then figuring out a solution on your own... There may be other people with a similar problem who see your question and think there will be a solution to their problem at the end of the thread,

[jQuery] Re: jQuery 1.2.1 is auto evaling scripts from AJAX before DOM is ready

2007-09-25 Thread benjam
No, I used the 'places the scripts at the end of the inserted HTML' method that I didn't want to use. It works, but this may be something that the developers will want to tweak. Thanks for all your suggestions though. On Sep 21, 4:18 am, Andy <[EMAIL PROTECTED]> wrote:

[jQuery] Re: jQuery runs inserted scripts prior to inserting HTML

2007-09-18 Thread benjam
cript not being executed in the proper order. I am also having issues in certain situations where the callback function for fadeIn (and show) is executing before the element is faded in all the way. These two things may or may not be related. ~Benjam On Sep 18, 9:30 am, Liam Byrne <[EMAIL P

[jQuery] jQuery runs inserted scripts prior to inserting HTML

2007-09-18 Thread Benjam Welker
form tag, the script executes as it should and everything works. But this method is a work-around, and I'd rather not do it this way. ~Benjam

[jQuery] jQuery 1.2.1 is auto evaling scripts from AJAX before DOM is ready

2007-09-18 Thread benjam
I have a script that runs a clickable calendar date field, and this script is being called in a form that is passed through AJAX. When the form html is returned from the AJAX script, it is added to the page and displayed. The problem is that the script (which cames after the input field it is re

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-23 Thread benjam
Could you also set the debugging output in the console to show what type is being used to do the sorting? e.g.- Sorting as 'currency' on 1 columns and dir 1 time: 2ms or Sorting as 'currency, date' on 2 columns and dir 0 time: 12ms Thanks.

[jQuery] Re: ANNOUNCE: tablesorter 2.0 beta released!

2007-07-23 Thread benjam
I would like to request a feature... It would be nice if one could optionally set the sorter to ignore all HTML tags in the table cells. For instance, have a setting in the config, something like: ignoreTags: true, Where if it were set, the sorter would strip out all the HTML tags before sortin