[jQuery] Adding properties to $.ajax(options)

2009-04-17 Thread blasto333
$.ajax({ type: GET, url: prefix+url, success: script_saved, custom_property : someVar }); Is there anything wrong with this?

[jQuery] Re: Adding properties to $.ajax(options)

2009-04-17 Thread blasto333
There is not an error, I was just wondering if this is frowned upon. On Apr 17, 8:32 am, Raja Koduru kscr...@gmail.com wrote: don't see any.. what is the error you are experiencing? - raja koduru On Fri, Apr 17, 2009 at 5:30 PM, blasto333 m...@chrismuench.com wrote: $.ajax({ type: GET

[jQuery] Re: Adding properties to $.ajax(options)

2009-04-17 Thread blasto333
There is not an error, I was just wondering if this is frowned upon. On Apr 17, 8:32 am, Raja Koduru kscr...@gmail.com wrote: don't see any.. what is the error you are experiencing? - raja koduru On Fri, Apr 17, 2009 at 5:30 PM, blasto333 m...@chrismuench.com wrote: $.ajax({ type: GET

[jQuery] JQuery.isReady property

2009-04-16 Thread blasto333
JQuery.isReady is NOT documented, but I have a valid use case for it and was wondering if there is a documented way of doing the same thing. I have a case where some code could be loaded as the page loads, but I don't have a particular function to fire until the document isReady. The same code

[jQuery] click

2008-10-31 Thread blasto333
I am having an odd behavior when calling click() on a checkbox [2] vs manually checking a checkbox [1]. function checkbox_click(event) { event.stopPropagation(); do_email(enable_email.url); if($(event.target).attr('checked')) {

[jQuery] Re: [autocomplete] do search on input focus

2008-10-25 Thread blasto333
() {   $(this).click(); }); Jörn On Thu, Oct 23, 2008 at 9:38 PM,blasto333[EMAIL PROTECTED] wrote: Still no luck, the plugin I am using is: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/ On Oct 23, 6:21 am, Isaak Malik [EMAIL PROTECTED] wrote: Oups, I think it should

[jQuery] [autocomplete] do search on input focus

2008-10-22 Thread blasto333
Is there a way to force a field to do a search on focus of the input? (I basically want the user to be suggested a default set of items before typing anything. I tried this $(#category).autocomplete(do_search.php,{max:100,minChars:0,delay: 10});

[jQuery] Re: [autocomplete] do search on input focus

2008-10-22 Thread blasto333
(){$(this).autocomplete(do_search.php,{max:1 00,minChars:0,delay:10}) }); }); On Wed, Oct 22, 2008 at 4:19 PM, blasto333 [EMAIL PROTECTED] wrote: Is there a way to force a field to do a search on focus of the input? (I basically want the user to be suggested a default set of items before typing

[jQuery] JQuery $ function

2008-10-17 Thread blasto333
How does this work...(This actually does what I want it to, but I am amazed that JQuery can figure out how to select from an array) function get_selected_rows() { var selected_rows = new Array(); $(#sortable_table tbody :checkbox:checked).each(function() {

[jQuery] tablesorter AJAX resort

2008-10-15 Thread blasto333
I have an table that a user can sort by selecting one or more columns. A user can then do a search on the table which will clear out the tbody and then insert new table rows into the tbody. When this happens the table headings still have the user selections for which columns they want sorted,