[jQuery] [autocomplete] Bug Reported with no response.

2010-01-19 Thread Andy M
I submitted a bug, as requested, to the jQuery bugtracker over a year ago. The bug was validated and assigned to Joern but has since sat untouched for over a year. The defect is at http://dev.jquery.com/ticket/3719. I tested against the latest version and this bug is still there. Anybody know if

[jQuery] Re: setting height of popup multiple times, background image still shows in IE6

2009-09-03 Thread Andy
Bump On Sep 1, 5:27 pm, Andy andym...@gmail.com wrote: I have a hidden popup that I populate with content and it dynamically expands to the size of the content. I then show the popup. When a user clicks on another link, it populates the popup with longer or shorter content. When

[jQuery] changing source of image, on click, first time size is wrong

2009-09-01 Thread Andy
. This happens on all browers. Any ideas? Thanks, Andy

[jQuery] setting height of popup multiple times, background image still shows in IE6

2009-09-01 Thread Andy
that I'm using expanding to the height of the previous size of the popup. I've tried setting the height manually with JS, no luck. This only happens on IE6. Any suggestions would be much appreciated. Thanks, Andy

[jQuery] Re: localscroll not working, help? could it be lightbox?

2009-08-24 Thread andy
Are you running WP? If so some plugins CAN break scrollTo, serialScroll etc depending on the syntax, etc, but in my experience Lightbox is not one of them. On Aug 23, 4:18 pm, Alice kikizi...@gmail.com wrote: problem can be seen here:http://unedible.com/alicewhite/ it's just not scrolling.

[jQuery] jCarousel - Accordian clash

2009-08-12 Thread andy marshall
Hi there. Hoping this is the right place to be asking this. I'm developing a website using an accordian and a carousel (http:// sorgalla.com/projects/jcarousel/). The accordian has 2-4 items in it, one of which is a vertically carouselled list of comments. If I've set the accordian to start on

[jQuery] Re: jCarousel Appears Vertical then Horizontal

2009-07-18 Thread Andy
Hey Guys, Getting the same issue - anyone know of any other fixes to this problem ? Really need some help!? Thx

[jQuery] jquery .noconflict

2009-06-24 Thread Andy
Hi Guys, I am using .noconflict in my Jquery script on a page with another library. The problem I am facing is that the other library is still producing an error even WITH .noconflict being used. I think its because the other library is being called first - as when I put the jquery library

[jQuery] Re: autocomplete

2009-06-24 Thread Andy Matthews
How about some code, or what it's doing / not doing? We can't help you unless you help us. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of smiling_face Sent: Wednesday, June 24, 2009 8:22 AM To: jQuery (English) Subject

[jQuery] SOT: Transparent AIR apps with custom chrome (using jQuery)

2009-06-22 Thread Andy Matthews
I just released another blog post in my jQuery and AIR series. http://andymatthews.net/read/2009/06/21/jQuery-and-AIR:-Transparent-AIR-appl ications-with-custom-chrome

[jQuery] Re: The Truth About Manifesting Money

2009-06-19 Thread Andy Matthews
Can someone block this user please? andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Pascale derkertis Sent: Friday, June 19, 2009 11:53 AM To: jquery-en@googlegroups.com; t...@googlegroups.com; viciados_em_liv...@googlegroups.com; django-us

[jQuery] Re: The Truth About Manifesting Money

2009-06-19 Thread Andy Matthews
, 2009, at 3:21 PM, Andy Matthews wrote: Can someone block this user please? blocked. --Karl Karl Swedberg www.englishrules.com www.learningjquery.com

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Andy Matthews
. I wouldn't have taken the gig personally. Life is too short supporting software that's been outdated for almost 8 years, and wasn't that good to begin with. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of James Sent: Thursday

[jQuery] Palm Pre and jQuery? Is it possible?

2009-06-16 Thread Andy Matthews
I watched a slidedeck today which talked about developing for WebOS, which is all based around JavaScript. Does anyone know if it's possible to use jQuery for WebOS development? andy

[jQuery] Re: How to simulate a human-triggered event?

2009-06-16 Thread Andy Matthews
Assuming the second input field is triggered by a user instigated event, then you could just trigger that event. $('input#change').click(function() { $('input#source').attr('value', 'This is the value changed by a button'); $('something').trigger('blur',fn); }); -Original

[jQuery] AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
Does anyone know of a plugin for jQuery that encapsulates some, or all, of the AIR API? andy

[jQuery] AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
Does anyone know of a plugin for jQuery that encapsulates some, or all, of the AIR API? andy

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
encapsulation, it does provide an abstraction layer: http://www.activerecordjs.org/index.html I've been using the ActiveRecord js implementation in AIR for a while now and it's proven to be solid so far: http://www.activerecordjs.org/record.html - Jack Andy Matthews wrote: Does anyone

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
happen in the app sandbox. I haven't really thought it out, but wondering if maybe you have. Maybe you're looking maybe for something that would just be used in the app sandbox and it'd be up to the end user to create the bridge stuff that they need? - Jack Andy Matthews wrote: Thanks Jack

[jQuery] Re: AIR plugin for jQuery?

2009-06-12 Thread Andy Matthews
with interface elements, sqlite.js deals with SQLite implementation, etc. But those files are specific to my app. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Friday, June 12, 2009 1:49 PM To: jquery-en@googlegroups.com Subject

[jQuery] Re: Question on filter()

2009-06-11 Thread Andy Matthews
Parent is the DOM node which contains the targeted element. So in your example td would be the parent of input. Label would be a sibling of input, or you could use the prev('label') method if you wanted to target the label element. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: Get all unique class names

2009-06-11 Thread Andy Matthews
=another / It returns an array: [div#something, h1#else, img#another] andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of David Sent: Thursday, June 11, 2009 9:02 AM To: jQuery (English) Subject: [jQuery] Get all unique class names I'm

[jQuery] Re: Get all unique class names

2009-06-11 Thread Andy Matthews
And as a side note, IDs should already be unique on a page. If they're not, then you're going to encounter unexpected issues in your code. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Andy Matthews Sent: Thursday

[jQuery] Re: SOT: jQuery UI and AIR - write content to the file system

2009-06-08 Thread Andy Matthews
system Awesome. Good job Andy. []s Marco Antonio On Mon, Jun 8, 2009 at 10:47 AM, Andy Matthews amatth...@dealerskins.com wrote: Just released a new blog post whereby I use jQuery draggable/droppable to write content to the user's file system. I'd love for some of you to check it out. http

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
portion, Javascript allows you to set multiples values at once. Because the author is performing an assignment (animCss = blah), it doesn't return anything so the value of running is set to false. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
That syntax looks for any ul tag in the context of the div variable (which would have to be a jQuery variable. That might look like this: var div = $('#myDiv'); var ulInDiv = $(ul, div); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

[jQuery] Re: Inner HTML on a .bind()

2009-06-04 Thread Andy
Actually I finally got it to work using, the part I was missing was I had to pass in 'this' witht he search otherwise - I'm guessing here - it was using the document instead of just the section I wanted it to search. This gives me the feature that FaceBook has of making the imbed videos bigger

[jQuery] Re: can someone translate this syntax ?

2009-06-04 Thread Andy Matthews
The || is or. Whichever is true first is the result. So this || that would equal this. But null || that would equal that. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of runrunforest Sent: Thursday, June 04, 2009 11:47 AM To: jQuery

[jQuery] Re: Looking for a plugin similiar to this scriptaculous effect...

2009-06-03 Thread Andy Matthews
-slider.html Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of williampdx Sent: Wednesday, June 03, 2009 10:32 AM To: jQuery (English) Subject: [jQuery] Looking for a plugin similiar to this scriptaculous effect... Hello everyone

[jQuery] Re: Create Ajax Request and edit html request

2009-06-02 Thread Andy Matthews
',data); } ); When your AJAX call returns successfully, you look for a div tag in the context of the returned piece of HTML. Note that this is untested, but it should work just fine. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery

[jQuery] Re: does selectors $ cache?

2009-05-27 Thread Andy Matthews
use the raw ID reference where possible as it's far more performant than tacking on a tag name first: $myID = $('#myID'); // this performs better than the line below $myID = $('div#myID'); // avoid this where possible, performance will degrade andy -Original Message- From: jquery-en

[jQuery] Re: Event behaving

2009-05-27 Thread Andy Matthews
Most likely because the button element doesn't recognize the keypress event. Not every element have the same events. Swap out button for input and try it again, it should work just fine. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf

[jQuery] Re: find reverse

2009-05-27 Thread Andy Matthews
One thing to remember Peter is that jQuery returns an array. You could do a more comprehensive search, then reverse the returned value. Something like this might work: var $myDivs = $('div').reverse; then search through $myDivs for your preferred value. andy _ From: jquery-en

[jQuery] selecting next()'s until I reach a tag

2009-05-27 Thread Andy
Is there a way for me to add the next several blocks until I get to a specific tag? So let's say the code is: h5title/h5 pdescription text/p pdescription text/p h5title2/h5 pdescription text/p pdescription text/p pdescription text/p h5title2/h5 pdescription text/p Basically, I want to

[jQuery] Re: selecting next()'s until I reach a tag

2009-05-27 Thread Andy
Thanks for the suggestion! That sort of works, but it's also getting the p tags AFTER the next H5, and I don't want it to. On May 27, 1:24 pm, Mauricio \(Maujor\) Samy Silva css.mau...@gmail.com wrote: Try: $('h5').nextAll('p'); Maurício   -Mensagem Original-   De: Andy   Para

[jQuery] Re: selecting next()'s until I reach a tag

2009-05-27 Thread Andy
/JQuery_1.2_Roadmap#.nextUntil.28.29_.2F_.prevU... Maurício   -Mensagem Original-   De: Andy   Para: jQuery (English)   Enviada em: quarta-feira, 27 de maio de 2009 14:32   Assunto: [jQuery] Re: selecting next()'s until I reach a tag   Thanks for the suggestion!   That sort of works, but it's

[jQuery] Re: Rollover Effects instead of alternate images

2009-05-22 Thread Andy Matthews
I believe your CSS is invalid. I don't think you can apply both a class AND an ID in the same selector which is what #base-state.active does. Now #base-state:active might work as that's a pseudo class. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-21 Thread Andy Matthews
. Doesn't that do pretty much what I'm looking for? Namely prevent the loading of an image until it's scrolled into the visible window space? andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of John Crout Sent: Wednesday, May 20, 2009 6:08 PM To: jquery-en

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-21 Thread Andy Matthews
I did not see your response Michael...bummer. It might have changed our approach. Regardless we've got the desired functionality in place already. Thanks for your time. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Michael Geary Sent

[jQuery] Re: SOT: execute JS before a specific image loads

2009-05-20 Thread Andy Matthews
: Wednesday, May 20, 2009 12:51 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: SOT: execute JS before a specific image loads Andy, Dunno if you can do thatcurious though, could you just do an ajax call that gives you the extra stuff? It won't fire if they don't have javascript

[jQuery] Re: help using parent()

2009-05-19 Thread Andy Matthews
You might try just var y = x.parent('div'); Would there ever be another div that could be a parent of one of these TD tags? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of elubin Sent: Tuesday, May 19, 2009 12:47 PM To: jQuery

[jQuery] Re: tablesorter with multiple tables problem

2009-05-16 Thread andy
Sounds like a css issue. Have you set both tables to 'clear: both;' or 'display: block;'? On May 15, 9:57 am, mlotfi mlotfi2...@gmail.com wrote: Hi, I am trying to use the plugin tablesorter that has a pager, for one table in a page it works fine, but when I put two tables, the pager links

[jQuery] Re: help positioning color picker

2009-05-16 Thread andy
Either use absolute positioning for the color picker to take it out of the normal flow of the document and set it's left margin and top values to place it in the desired position and/or ensure that the font div css clear value is set to 'none'. On May 15, 4:52 pm, skunkwerk skunkw...@gmail.com

[jQuery] Re: Better way to trim whitespace from input?

2009-05-13 Thread Andy Matthews
Well, you could try using a text transform CSS attribute on the text field. Then you wouldn't have to perform a toUpperCase using JavaScript. But other than that, looks about as lean as you can get it. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery

[jQuery] Re: Better way to trim whitespace from input?

2009-05-13 Thread Andy Matthews
: Wednesday, May 13, 2009 12:36 PM To: jQuery (English) Subject: [jQuery] Re: Better way to trim whitespace from input? Thanks. I can't use CSS because it doesn't actually submit the value as uppercase, which is what I need. On May 13, 1:03 pm, Andy Matthews li...@commadelimited.com wrote

[jQuery] Re: Cross Port Jquery Library Call

2009-05-13 Thread Andy Matthews
Can you put the jQuery file inside the secure server's domain, then reference it from there for both sites? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Shadraq Sent: Wednesday, May 13, 2009 1:03 PM To: jQuery (English) Subject:

[jQuery] Re: Nested sortable unordered list - parent li moves along with nested list

2009-05-13 Thread andy
Has anyone used the jQuery UI Sortable plugin with nested lists?

[jQuery] Re: SuckerFish menus covered by main content? please advise

2009-05-13 Thread andy
This is a css issue. After looking at the source code of your site, I noticed that the navigation is setup in table cells. The main nav should be setup in lists, with the subnav in a nested list within the main nav. See suckerfish drop down tutorial on

[jQuery] Re: PLease help.. sliding menu?

2009-05-13 Thread andy
jFlow is great - http://www.gimiti.com/kltan/wordpress/?p=32

[jQuery] Re: tablesorter messing with other tables

2009-05-13 Thread andy
I assume your tablesorter is picking up the desired table by an id or class attribute. Does the nested table have the same attribute? If so change the name of the nested table attribute and give it another try. If you would like the nested table to sort independently, give it a unique attribute

[jQuery] Re: Superfish with multicolumn sub navigation

2009-05-13 Thread andy
Have you taken a look at http://users.tpg.com.au/j_birch/plugins/superfish/#getting-started or tried only using lists with more complex CSS rather than div's?

[jQuery] Re: jQuery too slow on IE!!!

2009-05-12 Thread Andy Matthews
post an example link we can't test it, or examine your code. Care to do that? Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Chandan Sent: Tuesday, May 12, 2009 7:43 AM To: jQuery (English) Cc: prabhub@gmail.com

[jQuery] Re: Disable input button, using wrong HTML code?

2009-05-06 Thread Andy Matthews
Right. The disabled attribute takes an actual string, not a boolean. You can set even set it to true if you prefer: $(#button).attr(disabled,true); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jonathan Vanherpe (T T NV) Sent:

[jQuery] Re: Calling an element tag and the value inside one of it's attributes

2009-05-04 Thread Andy H
For some reason this post disappeared. Can anyone answer this? Thanks! On May 1, 10:01 am, Andy adharb...@gmail.com wrote: This is an odd questions.  I have a huge form with a lot of data. There is a table that data in it I need to display on a print screen (of course this data isn't

[jQuery] Re: Calling an element tag and the value inside one of it's attributes

2009-05-04 Thread Andy H
(function() { //alert($(span).attr(printElement)); $(span).each(function() { $(this).attr(printElement).each(function() { }); }); } On May 4, 1:33 pm, Andy H adharb...@gmail.com wrote: For some reason this post disappeared

[jQuery] Calling an element tag and the value inside one of it's attributes

2009-05-01 Thread Andy
This is an odd questions. I have a huge form with a lot of data. There is a table that data in it I need to display on a print screen (of course this data isn't being displayed in the regular table). So, I put the display text in a span tag. So, this is how each item will look: span

[jQuery] Grabbing text inside an alt tag

2009-04-29 Thread Andy
Is there a way to grab the text from inside a alt tag? I have a site that will have tons of span tags and I need to go through all of them searching for the alt= attribute then grab it. I'm using some non-jQuery javascript, so I'm sure there is an easier way to format this than what I

[jQuery] Re: How to get file name

2009-04-28 Thread Andy Matthews
You could also do this: $('img').attr('src').split('/').slice(-1); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of David .Wu Sent: Tuesday, April 28, 2009 3:36 AM To: jQuery (English) Subject: [jQuery] How to get file name img

[jQuery] Re: Can you help me understand .end() ?

2009-04-22 Thread Andy Matthews
Essentially the end method returns the result of the very first selector. Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of MorningZ Sent: Wednesday, April 22, 2009 1:06 PM To: jQuery (English) Subject: [jQuery] Re: Can

[jQuery] Re: jQuery countdown with simple percentage bar display?

2009-04-22 Thread Andy Matthews
Thanks Eric. That looks like just what I need, the timer version. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Eric Garside Sent: Wednesday, April 22, 2009 3:56 PM To: jQuery (English) Subject: [jQuery] Re: jQuery countdown

[jQuery] jQuery and Flickr? Is there a best of breed plugin?

2009-04-20 Thread Andy Matthews
I'm looking for a simple plugin which would pull in a specified Flickr feed and display it using jQuery. Does something like this already exist? Google shows about 5 or 6 but none of them appear to work. andy matthews

[jQuery] Re: jQuery AIR stripped

2009-04-17 Thread Andy Matthews
Interesting concept. I doubt that the jQuery team itself would approach that project as it would require forked code, but it might be a fun project for an individual. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Spot Sent

[jQuery] Re: Newbie Question - Show/Hide on a:link

2009-04-17 Thread Andy Matthews
Try using toggle instead: ${a.welcomenav).toggle(function(){ $(#welcome).show(); return false; },function(){ $(#welcome).hide(); return false; }); -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of

[jQuery] Re: binding after .get()

2009-04-17 Thread Andy Matthews
If you're using a current version of jQuery, then the liveQuery method is for you. http://docs.jquery.com/Events/live#typefn _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Karl Swedberg Sent: Friday, April 17, 2009 1:51 PM To:

[jQuery] Re: unsubscribe please

2009-04-17 Thread Andy Matthews
Have you tried using the Google Groups interface? _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Johnny Lombardo Sent: Friday, April 17, 2009 2:01 PM To: jquery-en@googlegroups.com Subject: [jQuery] unsubscribe please I have been trying to

[jQuery] Re: how to select elements inside jQuery objects

2009-04-16 Thread Andy Matthews
It's called context. Using your example, if you wanted to select all items with a class of .mol_row INSIDE the jQuery object mol_elements, you'd do this: $(.mol_row, mol_elements) That selector says look for .mol_row in the context of mol_elements. Andy matthews -Original Message

[jQuery] Re: $(button).Bind(click, function) Vs button onClick=function/

2009-04-16 Thread Andy Matthews
Try disabling the button, then reenabling it with jQuery? -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of reach4thelasers Sent: Thursday, April 16, 2009 8:39 AM To: jQuery (English) Subject: [jQuery] $(button).Bind(click, function) Vs

[jQuery] Re: jQuery Cycle with Transparent GIFs...Works in FF, Safari...but not in IE

2009-04-16 Thread Andy Matthews
issue, I see no problem with your slideshow in IE7. Which portion should we be looking at? Andy matthews -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt M. Sent: Thursday, April 16, 2009 2:07 PM To: jQuery (English) Subject

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Andy Matthews
I'd be careful with code like that. It is terse, and very elegant, but not all that readable from a coding for the next guy mentality. _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Joseph Le Brech Sent: Thursday, April 16, 2009 4:12 PM To:

[jQuery] Re: how to streamline my code with Event Delegation?

2009-04-16 Thread Andy Matthews
It would be more ideal to have some better way to identify each link. For example, assuming a similar structure: div id=linkContainer a href=link 01/a a href=link 02/a /div You might have this code: // all anchor tags inside the linkContainer $('#linkContainer

[jQuery] Re: Shorten the JQuery code

2009-04-16 Thread Andy Matthews
Guess it depends on who the next guy is :) On Apr 16, 2:16 pm, Andy Matthews li...@commadelimited.com wrote: I'd be careful with code like that. It is terse, and very elegant, but not all that readable from a coding for the next guy mentality.   _ From: jquery-en@googlegroups.com

[jQuery] Re: Should $(document).ready() be external? And should it be placed at the bottom of the page?

2009-04-14 Thread Andy Matthews
You can externalize the document.ready call if you choose, I do it all the time. As for putting it at the bottom of the page, I'd say no. Putting it in an external JS file, with the ready call makes it so that code is not run until the entire DOM is ready anyway. andy -Original Message

[jQuery] Re: Converting JSON to html output

2009-04-14 Thread Andy Matthews
ColdFusion JSON represent! -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Nando Sent: Tuesday, April 14, 2009 9:51 AM To: jQuery (English) Subject: [jQuery] Re: Converting JSON to html output Sure. Here's the JSON string being

[jQuery] Re: Should $(document).ready() be external? And should it be placed at the bottom of the page?

2009-04-14 Thread Andy Matthews
for size...if the file is over 5k, externalize it? andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of kgosser Sent: Tuesday, April 14, 2009 10:52 AM To: jQuery (English) Subject: [jQuery] Re: Should $(document).ready() be external

[jQuery] Re: truncate problem - why does it show full-size and then shrink after page load?

2009-04-13 Thread Andy
Any thoughts on this? On Apr 9, 12:03 pm, Andy andym...@gmail.com wrote: I'm using the Truncate plugin (http://www.reindel.com/truncate/) and when the page loads, all the DIVs display full size and then after the page load, they all shrink and show the more link. I look at the example

[jQuery] Re: capture user's selection on a html page

2009-04-13 Thread Andy Matthews
Look into the functionality on the New York Times story pages: http://www.nytimes.com/2009/04/14/world/asia/14thai.html?_r=1hp Highlight any block of text inside the story, and you'll get a litle popup question mark icon which links to a search of that string in the NYT database. Pretty handy

[jQuery] truncate problem - why does it show full-size and then shrink after page load?

2009-04-09 Thread Andy
I'm using the Truncate plugin (http://www.reindel.com/truncate/) and when the page loads, all the DIVs display full size and then after the page load, they all shrink and show the more link. I look at the example on the Truncate site and it doesn't behave this way Any ideas?

[jQuery] Re: How can I freeze the title row in a table?

2009-04-08 Thread Andy Matthews
Use Excel? :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Matt Wilson Sent: Wednesday, April 08, 2009 9:53 AM To: jQuery (English) Subject: [jQuery] How can I freeze the title row in a table? I have a table with lots of rows,

[jQuery] Creating a personal blog site. Upon clicking on an entry list item, it will open the correct text in the content area

2009-04-07 Thread Andy
I am creating code using Jquery that will take the text from a header tag in my content and populate a listitem box in the sidebar pane. Also, when clicking on the list item, it will unhide the content in the content pane and display it to the user. My issue right now is that I am not able to

[jQuery] Re: jQuery within Javascript?

2009-04-07 Thread Andy Matthews
You can use jQuery's each method: $(*[id^='bgChangerAnchor').each(function () { // do some stuff here for each item returned by the match })' -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Edward Ludlow Sent: Tuesday, April

[jQuery] Re: Nested sortable unordered list - parent li moves along with nested list

2009-04-05 Thread andy
One more thing I forgot to add. I am not trying to add the ability to move list items from one list to another, just reorder the items within their own list.

[jQuery] Nested sortable unordered list - parent li moves along with nested list

2009-04-04 Thread andy
Within an admin I created there is a nested sortable unordered list with the jQuery UI Sortable plugin to allow the user to reorder list items in the second (ul id=sortlist4) and third (ul id=sortlistb23) level nested lists. The first level list (ul id=sortablelist) cannot be sorted. Here is an

[jQuery] Re: Cool Flash-like Menu Effect

2009-03-31 Thread Andy Matthews
The Lava Lamp plugin is the one you want: http://www.gmarwaha.com/blog/2007/08/23/lavalamp-for-jquery-lovers/ -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of DesignerNotCoder Sent: Tuesday, March 31, 2009 8:36 AM To: jQuery (English)

[jQuery] Re: A general Javascript question: duplicate IDs in a document?

2009-03-31 Thread Andy Matthews
It's against the W3c spec for the DOM. The whole point of an ID is that it's unique on the page. Duplicate IDs lead to potential errors. If you need to have more than one of a thing on a page, then use a class. -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: A general Javascript question: duplicate IDs in a document?

2009-03-31 Thread Andy Matthews
One problem with that approach is that you're polluting the DOM with invalid markup. Rel is not a valid attribute of the div tag. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Eric Garside Sent: Tuesday, March 31, 2009 1:57

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
It sounds like you've already made up your mind about using HTML/JS (my personal choice), but have you considered Flex in conjunction with LiveCycle Data Services? LCDS makes syncing and managing conflicts SUPER simple. andy -Original Message- From: jquery-en@googlegroups.com

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
is going to be the hard part though. Possibly you could add a column in both dbs which contained a last changed data. Then, you could also query against the last changed between the AIR app and the remote db. andy -Original Message- From: jquery-en@googlegroups.com [mailto:jquery

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
BlazeDS. Turn transparency off and it worked just fine. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack Killpatrick Sent: Friday, March 27, 2009 3:13 PM To: jquery-en@googlegroups.com Subject: [jQuery] Re: OT: AIR sync? Thanks, Andy. I

[jQuery] Re: OT: AIR sync?

2009-03-27 Thread Andy Matthews
Mostly. Using Blaze allows you to communicate via remoting, which is a binary protocol. It's faster and lighterweight. However, the data sync is where LCDS really gets it's muscle. andy _ From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jack

[jQuery] Re: Pointless but fun jQuery experiment

2009-03-26 Thread Andy Matthews
That's stinkin' awesome! Very cool. I'm not even ask how you did it (I'll just view source). :) -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Kelvin Luck Sent: Wednesday, March 25, 2009 8:22 PM To: jquery-en Subject: [jQuery]

[jQuery] Re: one check box to select entire group

2009-03-26 Thread Andy H
of hard to follow explainations It's still not clear what the header column is  is it text? is there a checkbox?  what has the id cat1? On Mar 25, 5:22 pm, Andy H adharb...@gmail.com wrote: That is close, the item section will be different for each check box. The table will have

[jQuery] one check box to select entire group

2009-03-25 Thread Andy
Hey guys, I have a table where the header has check boxes so if you click on that, it will select all of the other checkboxes in that row. The issue I have, it's not a select all checkboxes, but ones that have a specific naming convention. Example. If my header is named ckb_category1 I need

[jQuery] jQuery SWFObject callback function anyone?

2009-03-25 Thread Andy Matthews
Does anyone know if the jQuery SWFObject plugin offers a callback function? I've got some alternate content inside the container which will contain my Flash movie. Problem is that the page takes so long to load that the HTML is visible for about 2 seconds before SWFobject kicks in. I'd like to

[jQuery] Re: one check box to select entire group

2009-03-25 Thread Andy H
, but none the less this could work: $(selector for header checkboxes).click(function() {       var chk = this;       $(input[id^=' + chk.id + _item']).each(function() { this.checked = chk.checked; }); }) On Mar 25, 12:12 pm, Andy adharb...@gmail.com wrote: Hey guys, I have a table where

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
at the end of your function. Jörn On Mon, Mar 23, 2009 at 10:39 PM, Andy Matthews amatth...@dealerskins.com wrote: I'm using the validation plugin to validate a field remotely. The validation portion works great, but I've got a question about the error message if the validation fails. I

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
$field.pulse({ backgroundColors: ['#fff','#ea7f1e'] }).bind('focus', function(){ $(this).recover(); }); return 'This page alias is already in use'; } } } andy _ From: jquery-en@googlegroups.com [mailto:jquery

[jQuery] Re: Validation plugin: combine functions with strings on remote error

2009-03-24 Thread Andy Matthews
with strings on remote error You shouldn't then use the message-callback for this functionality. Take a look at the highlight-option instead. Jörn On Tue, Mar 24, 2009 at 3:35 PM, Andy Matthews li...@commadelimited.com wrote: Okay... Another question. I'm having an odd issue with the message

[jQuery] Re: Jörn's Tooltip plugin

2009-03-17 Thread Andy Matthews
Noone? On Mar 16, 8:46 pm, Andy Matthews andyandja...@gmail.com wrote: Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from another event or if it's only when hovering over an element? For example, I could trigger the tooltip on element a FROM element b (or via trigger

[jQuery] Jörn's Tooltip plugin

2009-03-16 Thread Andy Matthews
Anyone know if Jörn Zaefferer's Tooltip plugin can be triggered from another event or if it's only when hovering over an element? For example, I could trigger the tooltip on element a FROM element b (or via trigger()). I'd like to use it as sort of a poor man's modal window message.

[jQuery] Re: How to turn a bulleted list into a pseudo select box

2009-03-10 Thread Andy Matthews
No one has input on this? I know I've seen it done somewhere, I just can't remember where. On Mar 10, 11:30 am, Andy Matthews amatth...@dealerskins.com wrote: I have a bulleted list that I'd like to convert into a pseudo select box. The result would be appear to be a select box, but would

  1   2   3   4   5   6   7   8   9   >