[jQuery] validate

2009-12-01 Thread tom
I'm using the jquery.validation plugin by Jörn Zaefferer and I was wondering whether there's a easy way to trim form elements before they are validated. For example, if I'm validating a email address: t...@test.com using the email : true rule, it'll display an error because the trailing

[jQuery] Re: validate

2009-12-01 Thread tom
I asked the question on stack overflow: http://stackoverflow.com/questions/1827483/jquery-validate-plugin-how-to-trim-values-before-form-validation On Dec 1, 1:50 pm, tom thomasfothe...@googlemail.com wrote: I'm using the jquery.validation plugin by Jörn Zaefferer and I was wondering whether

Re: [jQuery] Re: Is mouse inside a div?

2009-11-16 Thread Tom Lobato
Hi Shane, great, it works! thank you :) Shane Riley escreveu: You can attach the mouseenter event to the div like this: $('div').mouseenter(function() { // Do stuff }); Documentation is at http://docs.jquery.com/Events/mouseenter On Nov 15, 3:30 pm, Tom Lobato tomlob...@gmail.com wrote

Re: [jQuery] Re: Is mouse inside a div?

2009-11-16 Thread Tom Lobato
Hi Rick! yes, over a div. But I need to know if the mouse is or not over it. I made it setting a flag in the callbacks of the hover event: // show/hide gallery var is_over = false; $(#ftdest_forum).hover(function(){ is_over = true chvis(1.0) }, function(){ is_over = false

[jQuery] Is mouse inside a div?

2009-11-15 Thread Tom Lobato
Hi, in first, these days I started to play with jquery and I`m impressed, excellent library! Well, I already done some cool things, but I can`t find how to check wheter the mouse pointer is inside a div. Any hints? Thank you!

[jQuery] Superfish sfHover IE6 - only seems to work on right click

2009-11-05 Thread Tom Simnett
We Are/a/li li id=bloga href=Blog/a/li /ul Tom

[jQuery] Accordion in IFrame

2009-10-07 Thread Tom
Hello, I am working with DotNetNuke and the Accordion widget from JQuery. The problem is that the DNN-page is loaded in an IFrame so i cannot acces the accordion. div class=dvFrame iframe class=IFrame marginheight=0 marginwidth=0 frameborder=0 runat=server id=frmDNN /iframe /div

[jQuery] Replacing entire page.

2009-09-05 Thread tom
Hello, I am trying to replace the entire page when the user selects a different option in a combo box. The code I have works for the first iteration. However, It fails everytime there after. I went through firebug and it appears after the first refresh it never triggers the ready() method. Any

[jQuery] Re: event handlers that run after the browser's default action

2009-08-21 Thread Tom Worster
. Specifically what are you trying to accomplish by wiring an event handler to fire after the default action? On Aug 20, 10:39 pm, Tom Worster f...@thefsb.org wrote: thanks. i thought of using a timeout and it could probably be made to work fairly well. but i'd be left with the worry that some user's

[jQuery] event handlers that run after the browser's default action

2009-08-20 Thread Tom Worster
is there a way to set up a page so that a event handler function is bound to a DOM object and event but it runs _after_ the browser's default action is complete?

[jQuery] Re: event handlers that run after the browser's default action

2009-08-20 Thread Tom Worster
: This is crude, but might work for you... $(#someId).click()(function() { set_timeout(function() { // stuff to be done 2ms from now }, 2); }); You might have to play with the set_timeout delay a bit, 2ms might be too short. On Aug 20, 3:47 pm, Tom Worster f...@thefsb.org wrote

[jQuery] time entry controls (e.g. timeEntry plugin)

2009-08-19 Thread Tom Worster
does anyone use a jquery time entry control? which one? i'm looking at this one: http://keith-wood.name/timeEntry.html which seems ok. i'd be interested to know what others are using and what you think of them.

[jQuery] Re: animate image position

2009-08-11 Thread Tom Cool
). Please, any ideas. Tom On Aug 10, 10:35 pm, Paul Mills paul.f.mi...@gmail.com wrote: Hi, Can you post an example of your animation code or link to a demo page. Paul On Aug 10, 4:39 pm, Tom Cool tomcoo...@gmail.com wrote: Hi, I'm experiencing a large amount of flickering in a image i move

[jQuery] animate image position

2009-08-10 Thread Tom Cool
this animation? Thanks, Tom.

[jQuery] Re: [Autocomplete] Form submit or link on mouse click or return key

2009-07-21 Thread Tom Worster
On 7/20/09 1:06 PM, koichirose koichir...@gmail.com wrote: Hello, I'm using jQuery Autocomplete ( http://docs.jquery.com/Plugins/Autocomplete ) to display results from a php page. Since that is my only field, I want to submit the form when I click on the result or I press the 'return'

[jQuery] Re: Autocomplete - finding out (on blur) if the user has picked an item from the list or not

2009-07-03 Thread Tom Worster
On 7/2/09 5:49 AM, gnjunge gju...@gmail.com wrote: Concerning Jörn Zaefferer autocomplete. In many cases the autocomplete list is being filled with Key Value pairs, such as a list of FooBars with their name and id. Using the result function one would get the id, and drop it into a hidden

[jQuery] Re: howto: using autocomplete and validate (with remote) together

2009-06-30 Thread Tom Worster
On 6/30/09 9:03 AM, hobbesdev hobbes...@googlemail.com wrote: hi, i have in input element where the user can enter multiple email addresses (like in thunderbirds to: field) i use autocomplete to make suggestions form the database when the user enters new adresses. then i want to

[jQuery] Re: JQuery Autocomplete - conditional autocompletion between fields

2009-06-29 Thread Tom Worster
to set extraParams dynamically to the current value of other dom elements, assign a function to the extraParams that retrieves the value from the dom, e.g. $(#state).autocomplete(url, { extraParams: { town: function() { return $(#town).val(); } } }); see

[jQuery] Re: [autocomplete][livequery] .change()

2009-06-29 Thread Tom Worster
On 6/26/09 11:14 AM, lazytt mbre...@gmail.com wrote: Hello. I'm having a problem with the following code: $(.prodname).livequery(function(){ $(this).autocomplete (search.php, { extraParams: { 'type':'products' } }); }); $(.prodname).livequery(function(e){ $(this).change(function(e) {

[jQuery] Re: Autosuggest based dropdown selection plugin

2009-06-27 Thread Tom Worster
On 6/27/09 5:11 AM, bharani kumar bharanikumariyer...@gmail.com wrote: Hi all , I used the auto suggest / complete in my lot of projects , But this is some what different , I need the auto suggest plugin , that auto suggest must work based on the dropdown selection , Assume if

[jQuery] Re: ajax load

2009-06-27 Thread Tom Worster
On 6/27/09 11:15 AM, Peter Marino marino.pe...@gmail.com wrote: when I use the $(.main_view).load( my.php ); all my danish letters are rendered wrong. is there something I need to do in the my.php to make sure it shows the danish characters correctly? anyone? perhaps my.php is returning

[jQuery] Re: autocomplete

2009-06-12 Thread Tom Worster
On 6/10/09 1:11 AM, smiling_face rd.welco...@gmail.com wrote: first of all thanks for your gr8 plugins to add autocomplete feature using jquery. but I am facing a problem to implement this in my application. As in error console it is showing syntext error .ac_results {

[jQuery] Re: Autocomplete Behavior clarification

2009-06-12 Thread Tom Worster
On 6/10/09 1:17 PM, Brad nrmlcrpt...@gmail.com wrote: I have an Autocomplete on a form that uses local data. However, the input allows users to enter values that are not in the local data array. If the user enters and selects matching data the .result callback function sets a corresponding

[jQuery] Re: [autocomplete] hard time with accent

2009-06-05 Thread Tom Worster
On 6/4/09 2:17 PM, James james.gp@gmail.com wrote: What are you using to do the string matching? depends on the kind of search i need. For me, I was using autocomplete to search for something stored in a MySQL database, i think that's a very common scenario. and MySQL by default

[jQuery] Re: autocomplete

2009-06-05 Thread Tom Worster
On 6/5/09 3:37 AM, BBCLX beat.bes...@gmail.com wrote: I am using the plugin in remote-mode meaning that I fetch a seperated list from my server. The problem now is that this server uses basic authentication and whenever I start typing I get prompted for the username and password, which is

[jQuery] Re: [autocomplete] hard time with accent

2009-06-04 Thread Tom Worster
it easier to do in the backend than in client js? 2009/6/2 Tom Worster f...@thefsb.org On 6/1/09 2:48 PM, Gui guilhermealcant...@gmail.com wrote: I'm currently using this JQuery autocomplete plugin. It fits my needs, pretty cool, however I'm having a hard time with accents. If I type: Antonio

[jQuery] Re: [autocomplete] - Problem closing autocomplete

2009-06-03 Thread Tom Worster
On 6/3/09 10:49 AM, AlexKV alexander.we...@kv-rlp.de wrote: If the Autocompleter ist active and I click somewhere else on the page to close the autocompleter, the autocompleter inputbox will be focused. Can I change this behavior? I want that the autocompleter will be closed if I click

[jQuery] Re: [autocomplete] hard time with accent

2009-06-02 Thread Tom Worster
On 6/1/09 2:48 PM, Gui guilhermealcant...@gmail.com wrote: I'm currently using this JQuery autocomplete plugin. It fits my needs, pretty cool, however I'm having a hard time with accents. If I type: Antonio, the plugin won't retrieve Antônio. I mean, it won't handle the special characters

[jQuery] Re: Autocomplete two fields

2009-06-01 Thread Tom Worster
On 5/30/09 5:15 AM, Adrian Grigoras adrianc.grigo...@gmail.com wrote: I use JQuery.Autocomplete to autocomplete values into one field. Depending on the first field, I also need to populate a second field. For example: I autocomplete the Name field and depending on the selected name I

[jQuery] Re: Autocomplete Question

2009-06-01 Thread Tom Worster
On 5/30/09 12:31 PM, Marc marc.st...@gmail.com wrote: I am using jquery.autocomplete in a search for schools. I have optional fields (referenced as extraParams) which allow the user to narrow the search to a specific state and city. This part works fine. If the user selects a state and

[jQuery] Re: AutoComplete with extraParam

2009-06-01 Thread Tom Worster
On 5/30/09 5:15 PM, Dushyant Patel patel.dushy...@gmail.com wrote: Hi All, I am using AutoComplete plug-in, its working great for me. But now i have some new requirement and i am not able to make it work with autocomplete. Requirement is as follow: Now i need 2 extra parameter to

[jQuery] Re: [autocomplete] matchContains in multiple words

2009-06-01 Thread Tom Worster
On 5/31/09 5:36 PM, Alec alec.mil...@gmail.com wrote: http://docs.jquery.com/Plugins/Autocomplete Say I have the following entry in a data array: Quick brown fox Is it possible to return this entry when I search for e.g. qui fox? At this moment I can only get this result when

[jQuery] Re: browser detection, conditional CSS

2009-06-01 Thread Tom Worster
On 6/1/09 1:16 PM, waseem sabjee waseemsab...@gmail.com wrote: i good thing to do is to declare this styles on your default / index page /* keep your page defaults the same across each browser */ html { width:100%; height:100%; } /* declare the initial margin and padding of each

[jQuery] Re: [autocomplete] change ?q= to predefined param name or get field value for extraParams call

2009-05-20 Thread Tom Worster
On 5/19/09 3:36 PM, jakemonO jakeo...@gmail.com wrote: Is there a way to change the ?q= parameter name to something that was predefined by the JSON emmitter? For example, Lotus Domino expects the querystring to be of the form ?Startkey=... . Alternately, I can put that query in the

[jQuery] Re: Recommendations for jQuery method to play mp3 audio

2009-05-20 Thread Tom Worster
On 5/20/09 10:02 AM, SamCKayak s...@elearningcorner.com wrote: Is there a cross-browser jQuery plug-in that can preload several different mp3 audio files and provide play / stop methods? yes. http://plugins.jquery.com/search/node/mp3+type%3Aproject_project but for mp3 i really like 1bit. but

[jQuery] Re: [autocomplete] Can I validate and update the entered value before doing the search?

2009-05-18 Thread Tom Worster
On 5/18/09 2:57 AM, ulf.ren...@gmail.com ulf.ren...@gmail.com wrote: My best though right now is to patch the plugin to include another option - substituteValue - which could be a function that validates and rewrites the data in any desired way before the match is done. i've thought in the

[jQuery] Re: [autocomplete] Can I validate and update the entered value before doing the search?

2009-05-15 Thread Tom Worster
On 5/14/09 8:58 AM, Ulf Renman ulf.ren...@gmail.com wrote: When typing data into the autocomplete-field the list of matches is updated at every key pressed. Is it possible in any way to check and correct the data before doing the match. Or could you alter the way the match is done. The

[jQuery] Re: chained select box

2009-05-14 Thread Tom Worster
On 5/14/09 3:20 AM, phusys alessio.f...@gmail.com wrote: I need to show 3 select box (country, state, city) with data get from a mysql database and when a user select a value from one of the select box the other shows chained data. How can I do this with jquery? fill the first select before

[jQuery] Re: JQuery and Ajax

2009-05-13 Thread Tom Worster
On 5/13/09 2:23 PM, nat natasha.d...@gmail.com wrote: I am working on adding asynchronous form submission inside a jquery dialog. I am using .ajax(). Everything is working correctly, but the submission takes longer than I would like. I am new to jquery and am unsure how to debug/optimize

[jQuery] Re: How to implement autocomplete with cross domain json with custom parameter

2009-05-11 Thread Tom Worster
On 5/11/09 2:46 PM, Dushyant Patel patel.dushy...@gmail.com wrote: I tried and tired also, finding the way how can i implement jQuery.Autocomplete plugin with cross domain json? Can any one help me? or provide me link for that instruction? not me. but this is worth reading:

[jQuery] Re: [autocomplete] Search Page Replacement

2009-05-10 Thread Tom Worster
On 5/8/09 3:36 PM, Logan Green logangr...@gmail.com wrote: This tab issue is driving me crazy. Has anyone found a hack/fix that will allow the tab to work as expected...where the user hits tab once, and moves to the next field? not that i am aware of. given the activity on this plugin

[jQuery] Re: [autocomplete] Invoking autocomplete dropdown on focus, before user types

2009-05-06 Thread Tom Worster
On 5/5/09 6:09 PM, Mike Harris gfunk...@gmail.com wrote: Does anyone know how I can get the autocomplete dropdown list of values to appear when the text field gains focus, before the user types anything. I've been trying to do this, and have so far been unsuccessful. Any help would be

[jQuery] Re: [autocomplete] disable submit until valid selection is made

2009-05-06 Thread Tom Worster
On 5/5/09 7:51 PM, Seth seth.ta...@gmail.com wrote: I have a situation where the only valid inputs on my autocomplete field are the ones supplied by my ajax method. Is there a way to disable the submit button on my form until the input field contains one of the autocomplete values? could

[jQuery] Re: [autocomplete] Bug in click function

2009-05-06 Thread Tom Worster
On 5/5/09 1:59 PM, tudela rafael.tud...@gmail.com wrote: Hi, I was using the autocomplete and found a bug in the click function, follow the code: Actual code: // In this code you need to click twice in the input element to show the results. .click(function() { // show select when

[jQuery] Re: [autocomplete] Search Page Replacement

2009-04-27 Thread Tom Worster
On 4/26/09 9:31 PM, Jordon Bedwell jor...@envygeeks.com wrote: this is one of two counter-intuitive keyboard behaviors i'm aware of. the other is tab, which most users would expect to get them to the next form element. I'm still scratching my head at how this is counter-intuitive? If you

[jQuery] Re: [autocomplete] Search Page Replacement

2009-04-27 Thread Tom Worster
On 4/27/09 5:25 AM, Matthew Vickery vickery.matt...@gmail.com wrote: Thanks for your reply.  I see what you mean about the tab key...  I hope someone offers you some advice so you can use the plugin without branching. i already have an auto-completion of my own that i wrote a few years ago

[jQuery] reading show/hide state

2009-04-27 Thread Tom Worster
when using show() and hide(), what's the right way for the script to read the state of the element? i've found that attr('display') can be used but this seems like an undocumented hack and could fail in future releases of jquery.

[jQuery] Re: autocomplete

2009-04-26 Thread Tom Worster
On 4/26/09 2:06 PM, Marc marc.st...@gmail.com wrote: I have a silly question... I am using extraParams to pass additional field values via the URL $(#findHighSchool).autocomplete(autocomplete_ajax.cfm, { width: 260, selectFirst: false,

[jQuery] Re: [autocomplete] Search Page Replacement

2009-04-26 Thread Tom Worster
On 4/26/09 9:12 AM, mattvick vickery.matt...@gmail.com wrote: I need the list of results to appear without any of them highlighted so hitting the return key submits the form without updating the text in the search field. I still need the search field to update, and the form submit, if any

[jQuery] Re: refactoring code

2009-04-25 Thread Tom Worster
On 4/24/09 7:39 PM, Calvin cstephe...@gmail.com wrote: Does anyone have any advice in regard to refactoring jQuery code to make it more efficient/elegant/simple? certain coding styles are implied by the jq apis, e.g. chaining, that i think may lead to efficiency gains. i've been reading

[jQuery] jquery array

2009-04-25 Thread Tom Shafer
it out. How can this be done. Thanks -Tom

[jQuery] Re: Autocomplete Question

2009-04-24 Thread Tom Worster
On 4/23/09 10:27 PM, pjecty pje...@gmail.com wrote: Is there's a way to link each seach result value in the localdata.js to another page so that when i search for something and click it, it goes to another page? could you write such redirection into a .result() handler?

[jQuery] Re: Some pseudo help if you'd be so kind?

2009-04-22 Thread Tom Worster
On 4/22/09 10:18 AM, ldexterldesign m...@ldexterldesign.co.uk wrote: Hey guys, I have 10 separate posts displayed on a page. I want to hide 7 (of the oldest) of them and display a link; 'show more posts' - kinda a pagination thing I guess. My PHP pumps out 10 posts, and I'd like to do

[jQuery] Re: autocomplete

2009-04-21 Thread Tom Worster
On 4/20/09 10:32 PM, Pitt Phunsanit phunsa...@gmail.com wrote: i found some blobem from autocomplete plugin valible isearch don't send to php script the value of the field is sent in the q parameter. write your php script to use $_GET['q'] instead of $_GET['isearch'].

[jQuery] Re: autocomplete

2009-04-21 Thread Tom Worster
On 4/20/09 10:35 PM, James james.gp@gmail.com wrote: Try: $(#isearch).autocomplete(search_result.php, { extraParams:{isearch:$(#isearch).val()}, width:542, multiple: true, matchContains:true, cacheLength:0, minChars:1, delay:0 }); i'm not sure

[jQuery] Re: [autocomplete] Some Problems

2009-04-20 Thread Tom Worster
On 4/19/09 10:17 PM, HaiLin myu...@gmail.com wrote: I have some problems about jQuery autoComplete plugin. I use this one: http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete/. Here are problems: (1) select in IE6. It seems this can be fixed by using bgiframe plugin. Here is the

[jQuery] Re: Autocomplete plugin for multiple form fields from a JSON source [autocomplete]

2009-04-17 Thread Tom Worster
On 4/16/09 6:44 PM, tatlar robertlnew...@gmail.com wrote: So, I got around this by creating another JSON file that is just an array of station names. Autocomplete now parses this just fine, and my first field is completed. The next part was more tricky - how to populate the second input

[jQuery] Re: [autocomplete] Submit form on click result

2009-04-17 Thread Tom Worster
On 4/17/09 7:14 AM, dajaniel daniel.howe...@googlemail.com wrote: My jquery is pretty sketchy so I was wondering if anybody knew how to submit the form that the search field appears in on click of a result (after having populated the textfield and any other fields)? Not sure how to do

[jQuery] Re: Validation plugin (bassistance.de) problem

2009-04-17 Thread Tom Worster
i also detected some difference between the demo's behavior and the docs. i'm not sure what sequence of ui actions led to the result in the attached png but i've seen it twice now. On 4/17/09 8:17 AM, Jörn Zaefferer joern.zaeffe...@googlemail.com wrote: The behaviour is described here:

[jQuery] Re: Autocomplete problems with multiple fields

2009-04-17 Thread Tom Worster
On 4/16/09 2:50 PM, Lance A. Brown la...@bearcircle.net wrote: I'm working on adding autocomplete to a form which describes a discussion paper. Each paper can have multiple authors and I want to provide autocomplete on the author names. I'm new to jQuery so this code is kind of rough.

[jQuery] Re: Autocomplete problems with multiple fields

2009-04-17 Thread Tom Worster
On 4/17/09 12:49 PM, Lance A. Brown la...@bearcircle.net wrote: Tom Worster wrote: what autocomplete plugin are you using? this one does not have a documented parse option: http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_dataoptions Its the standard autocomplete

[jQuery] news headlines

2009-04-16 Thread tom
I have a latest news headline 'box' included on a home page and a seperate news page with the full stories on. The news page has a table with a heading newsheadline and i want the latest news 'box' to just grab the top 5 news headlines from the news page so i only have to update the news page.

[jQuery] Re: assign event handler to multiple events

2009-04-15 Thread Tom Worster
On 4/14/09 6:21 PM, James james.gp@gmail.com wrote: $('.things').bind('focus change click', function() { // your code here }); ah ha! thanks. that is tidy. tom

[jQuery] Re: [autocomplete] charset

2009-04-15 Thread Tom Worster
On 4/15/09 3:19 AM, borutt borut.toma...@gmail.com wrote: GET /PHP/data.php?sid=0.179863580913668q=%C4%8Duk %C4%8D is the urlencoding of the utf-8 codepoint for 'č'. My input was čuk but like it's seen from GET params, q param has strange chars. But in QueryString it is ok. i don't know

[jQuery] Re: Autocomplete plugin for multiple form fields from a JSON source [autocomplete]

2009-04-15 Thread Tom Worster
On 4/15/09 2:27 PM, tatlar robertlnew...@gmail.com wrote: I am using Jorn's awesome autocomplete plugin in one form field to allow a user to quickly narrow down which station they wish to view visit times for. However, it would be really cool to extend this so that when the selection is

[jQuery] Re: Autocomplete plugin for multiple form fields from a JSON source [autocomplete]

2009-04-15 Thread Tom Worster
minChars to 0 to display the list of suggestions. this is a quirk of the plugin. this is my first version of a script that seems to work in a way that wouldn't be too surprising to an unprepared user. i haven't given it much testing yet. comments and improvements would be welcomed. tom

[jQuery] Re: [Autocomplete] help: keyboard selection not working

2009-04-15 Thread Tom Worster
On 4/15/09 4:21 PM, Lance Speelmon lancespeel...@gmail.com wrote: Unfortunately, that did not work for me... I have tested with both Safari4 and FF3. Any other ideas? Thanks, L try using only the style sheet supplied with the plugin. if keyboard nav works then you can work from that back

[jQuery] Re: [autocomplete] charset

2009-04-14 Thread Tom Worster
On 4/14/09 4:36 AM, borutt borut.toma...@gmail.com wrote: I'm having problem with charset on searching value, that is returned in param q. On main page and od page from where script search for data I have charset placed: main script: meta HTTP-EQUIV='Content-Type' Content='text-html;

[jQuery] Re: [autocomplete] charset

2009-04-14 Thread Tom Worster
On 4/14/09 11:54 AM, borutt borut.toma...@gmail.com wrote: was the page with the form containing the input element explicitly served with header Content-Type: text/html; charset=Windows-1250? (i check headers sent in WebKit Inspector, i'm sure there are other ways.) I have included in

[jQuery] assign event handler to multiple events

2009-04-14 Thread Tom Worster
i can assign a handler to one event type thus: $('.things').focus(function(){ $(this).data('foo', true); ... }); if i want to assign the same handler to several events, say focus, change, and click, what's the tidy way to write it [assuming my handler wants to access $(this)]?

[jQuery] Re: [Autocomplete] help: keyboard selection not working

2009-04-13 Thread Tom Worster
be. anyway, there it is. put a rule for li.ac_over in your style sheet. On 4/6/09 6:52 PM, Tom Worster f...@thefsb.org wrote: I'm unable to make the keyboard selection of suggestions from the dropdown work in my project, otherwise it works fine and selection with the mouse is possible

[jQuery] [Autocomplete] One more question

2009-04-07 Thread Tom Worster
problem with pressing tab or shift-tab. It seems a field grabs its focus back if I don't use any of its suggestions. I see the same in FF3 and Safari3. Is this focus grabbing the intended behavior of Autocomplete? tom

[jQuery] Re: [autocomplete] How to man ually trigger event for displaying results an d suggestions in Autocomplete by Jörn??

2009-04-07 Thread Tom Worster
On 4/7/09 2:19 AM, enriquepalaci...@gmail.com enriquepalaci...@gmail.com wrote: My cuestion is about this great autocomplete plugin by Jörn, i got it working using ajax and all... But theres no way to display the results manually??? i'm interested in this too. i have three form fields, each

[jQuery] [Superfish] CSS Questions

2009-04-07 Thread Tom
if you can help Thanks! Tom

[jQuery] Re: [autocomplete] custom fields for remote URLs

2009-04-07 Thread Tom Worster
On 4/7/09 1:00 PM, skunkwerk skunkw...@gmail.com wrote: i'm using the autocomplete plugin here (http://docs.jquery.com/ Plugins/Autocomplete) and want to be able to use it with a remote URL, while at the same time having access to have text displayed one way, and selected another way (ie

[jQuery] Re: [autocomplete] Regular Expression

2009-04-07 Thread Tom Worster
On 4/7/09 6:26 PM, Franck Y franck...@gmail.com wrote: Is there anyway to implement a regular expression feature. It does not need to be full regxp butat leat soemthing like star *ek will match Creek if what you're looking for is a substring match as opposed to a begins-with match then see

[jQuery] Autocomplete plugin help: keyboard selection not working

2009-04-06 Thread tom
I'm unable to make the keyboard selection of suggestions from the dropdown work in my project, otherwise it works fine and selection with the mouse is possible. I'm using safari 3 and ff3. Keyboard selection in the demos is working fine, so this seems not to be a browser issue. I've checked that

[jQuery] loop through div

2009-03-16 Thread Tom Shafer
how can i loop through each div on a page and have them appear one by one i am trying var arrayList2 = $.makeArray(document.getElementsByClassName (.type)); $.each(arrayList2,function() {

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
thanks guys! On Mar 16, 7:26 pm, ricardobeat ricardob...@gmail.com wrote: jQuery.fn.showLoop = function(i){   var i = i || 0,     self = this;   $( this[i] ).show(600, function(){        self.showLoop(++i);   }); }; $('.type').showLoop(); On Mar 16, 7:27 pm, Tom  Shafer tom.sha

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
(); On Mar 16, 7:27 pm, Tom  Shafer tom.sha...@gmail.com wrote: how can i loop through each div on a page and have them appear one by one i am trying var arrayList2 = $.makeArray(document.getElementsByClassName (.type));                                                 $.each(arrayList2

[jQuery] Re: loop through div

2009-03-16 Thread Tom Shafer
16, 7:27 pm, Tom  Shafer tom.sha...@gmail.com wrote: how can i loop through each div on a page and have them appear one by one i am trying var arrayList2 = $.makeArray(document.getElementsByClassName (.type));                                                 $.each(arrayList2

[jQuery] jquery each help

2009-03-15 Thread Tom Shafer
I have articles in a group of divs div class=art div id=leftMainimg src=media/img/greenBar.png width=11 height=211//div div id=rightMain span class=postedDatePOSTED: 15 MARCH 2008 1400 HOURS/span

[jQuery] Re: jquery each help

2009-03-15 Thread Tom Shafer
for. http://docs.jquery.com/Effects/animate On Mar 15, 11:46 am, Tom  Shafer tom.sha...@gmail.com wrote: I have articles in a group of divs div class=art                         div id=leftMainimg src=media/img/greenBar.png width=11 height=211//div                         div id

[jQuery] slowly load image 1 line at a time

2009-03-13 Thread Tom Shafer
hi, I am in need of some way to slowly load a image 1 line at a time, or maybe load a div 1 line at a time any ideas? thanks, -tom

[jQuery] [Exception... Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE)

2009-03-09 Thread Tom Shafer
what does this error mean [Exception... Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open] nsresult: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) location: JS frame :: http://tjshafer.com/projects/boyd/js/jquery-1.3.2.min.js :: anonymous :: line 19 data: no]

[jQuery] nsIXMLHttpRequest.open error

2009-03-09 Thread Tom Shafer
I get the error [Exception... Component returned failure code: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) [nsIXMLHttpRequest.open] nsresult: 0x80070057 (NS_ERROR_ILLEGAL_VALUE) location: JS frame :: http://tjshafer.com/projects/boyd/js/jquery-1.3.2.min.js :: anonymous :: line 19 data: no] [Break on

[jQuery] Form elements able to be deleted by user? [validate]

2009-03-02 Thread tom
I'm using the jquery.validate plugin to validate an email address in a login form and I have seen a weird bug which I was wondering whether anyone else has seen / fixed? I entered a invalid email and the validation error message was show as normal however, I could delete the error message and

[jQuery] attr feature

2009-02-09 Thread Tom Shafer
Does the attr feature let me capture my own attribute inside a element. I am trying and it doesnt seem to be working. I just wondering if there was a way to do this. Thanks -Tom

[jQuery] Re: attr feature

2009-02-09 Thread Tom Shafer
sorry about that $('#projectid').attr('link') this is going into ajax post On Feb 9, 10:59 am, MorningZ morni...@gmail.com wrote: Maybe showing an example of what isn't working would help others help you On Feb 9, 10:28 am, Tom  Shafer tom.sha...@gmail.com wrote: Does the attr feature

[jQuery] Re: Text to the left of the jQuery Star Rating Plugin

2009-02-07 Thread Tom
Great, that did the trick on the simplified test version I was messing around on. For some reason it didn't work on my site, but I tried giving it a float: left !important instead and that worked. Thanks for the help, Tom On Feb 7, 4:10 am, jQuery Lover ilovejqu...@gmail.com wrote: Surround

[jQuery] jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
and ownerDocument from the draggable element. any help would be most gratefully appreciated!!! i can supply a URL to view the issue...the site works fien in FF otherwise i'd be using firefbug to track down the problem...i can't seem to extract any more info than this really...! again thanks in advance!! tom

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
with the setup/ code or if someone had run into the same problem! using jQuery 1.2.6 with an unkown version of UI as its only the minified version with no comments, it would be whicever version is compatible with 1.2.6. thanks, tom On Feb 6, 1:00 pm, Richard D. Worth rdwo...@gmail.com wrote: In the future

[jQuery] Re: jQuery offsetParent - using with drag/drop UI problem in IE7

2009-02-06 Thread tom gee
an unspecified error...!! http://weblogs.asp.net/rajbk/archive/2006/11/29/ie-6-7-unspecified-error-when-accessing-offsetparent-javascript.aspx thanks! On Feb 6, 2:09 pm, tom gee t...@obskure.org wrote: hi, apologies the reason i didn't post in the UI group was because it was a method of jQuery itself

[jQuery] Text to the left of the jQuery Star Rating Plugin

2009-02-06 Thread Tom
thanks, Tom

[jQuery] sortable update problem

2009-02-02 Thread Tom Shafer
Tom

[jQuery] Re: sortable update problem

2009-02-02 Thread Tom Shafer
works perfectly, thank you very much -Tom On Feb 2, 12:32 pm, Richard D. Worth rdwo...@gmail.com wrote: jQuery UI 1.5.3 is only compatible with jQuery 1.2.6. In order to use jQuery UI with jQuery 1.3+, you'll need the latest preview release1.6rc6. It is compatible with 1.3 (but not 1.2.6

[jQuery] Re: sortable update problem

2009-02-02 Thread Tom Shafer
for tonight. See http://blog.jquery.com/2009/01/30/jquery-ui-16rc6-help-us-test/ Also note, there is a dedicated mailing list for jQuery UI help: http://groups.google.com/group/jquery-ui Thanks. thanks i appreciate it - Richard On Mon, Feb 2, 2009 at 11:26 AM, Tom Shafer tom.sha...@gmail.com

[jQuery] live and plugins

2009-02-01 Thread Tom Shafer
How would I make live work with plugins? With the livequery plugin i used $('.text-edit').livequery('click', function() { akedit(save_url, options); }); akedit is a not a jquery function. How would I make a plugin work with this Thanks, -Tom

[jQuery] Re: live and plugins

2009-02-01 Thread Tom Shafer
no your right, i have no idea what i was thinking. I got it working Thanks though On Feb 1, 9:31 pm, Mike Alsup mal...@gmail.com wrote: How would I make live work with plugins? With the livequery plugin i used $('.text-edit').livequery('click', function() {                

[jQuery] Edit list of items in selector.

2009-01-26 Thread tom
Hello All, I am trying to reset the list of values in a selector with new a set values I have in a list of JSON objects. I dont know the proper syntax for doing this any help is greatly appreciated as I've searched the web for this and couldn't find anything on it. The only way I know would

  1   2   >