[jQuery] Re: Question re: jQuery QuickSearch

2008-08-23 Thread mickes
Try this: Here is a sample of the head section of my html document: HEAD TITLEASAP Summries 2-26-08 - Flight Options/TITLE script src=jquery.js type=text/javascript charset=utf-8/ script script src=jquery.quicksearch.js type=text/javascript charset=utf-8/script

[jQuery] Newbie - trying to find and remove specific text but leave the html alone!

2008-07-22 Thread mickes
I have the following mark up that I want to remove just the text This is text I want to remove but I want to leave the td in place and expand its size. Actually I want to increase the size of the row containing the text I want to remove. BTW I have no control over the markup and there are tables

[jQuery] Re: How to hide several values in an option select box?

2008-06-14 Thread mickes
Thank you very much. That was just the push I needed. it worked! I think what I will try and do is since I know the values I want to remove I will load them into an array and loop through them applying the remove() function. Again, thank you very much! Mike On Jun 13, 9:56 pm, Dave Methvin

[jQuery] How to hide or remove values in an option select list

2008-06-13 Thread mickes
Hello, is there a simple way of hiding or removing values in a select list? For instance I have a list like the one below and I want to hide or remove two items: asc.300-signage and asc.815-grounds but when I try the following syntax $(option).val([asc.425-signage,asc.815-grounds]).hide() it

[jQuery] How to hide several values in an option select box?

2008-06-13 Thread mickes
I am trying to hide several values in an option select list. A sample is below: For instance I want to hide or remove option value=asc.212- servicingServicing/option and option value=asc.333-air- conditioningAir Conditioning/option When I try the following syntax it removes the entire list and

[jQuery] Jquery Autocomplete plugin question = Can I feed it an xml or js file for the completion items?

2008-05-20 Thread mickes
Has anyone used the Autocomplete plugin by feeding it an xml file not generated from a sql result? I am writing a Greasemonkey script to autofill an input box from a list of possible selections that I would like to store in an xml file or a js file inside the Greasemonkey script. Anyone have a