[jQuery] Re: Canceling an animation

2007-11-02 Thread Gordon
To abort before the animation starts you'd use slearTimeout. In the case where the animation has already started you'd use $ (selector).stop () On Nov 2, 12:17 am, S. Robert James [EMAIL PROTECTED] wrote: I have an animation that runs after a delay:

[jQuery] IE JSON eval problem

2007-11-02 Thread mngd
Hi, The following code works in FF but generates errors in IE6. I'm completely stumped - any feedback appreciated... script type=text/javascript var menuitems = { home : home.html } function openPage(item) { // this is what I

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread Richard D. Worth
A slight correction to give credit where it is due: Malsuphttp://www.malsup.com/jquery/has written some great plugins (BlockUI, Cycle, Form, etc.), but Dimensions and Live Query are both by Brandon Aaron http://blog.brandonaaron.net/. - Richard On 11/2/07, resetstudio [EMAIL PROTECTED] wrote:

[jQuery] fadeOut behaving funny

2007-11-02 Thread stef
i have a page where a form is submitted to the same page, using php (no ajax). if the query that writes the data to the db is successful it sets $marker = 1; in the head of my page i then i have the code below, which tries to achieve the yellow fade technique: a message appears to indicate

[jQuery] Re: Slickspeed from Mootools

2007-11-02 Thread Rey Bango
Hey Hector, What the *initial* release of our tests (which was the motivation for SlickSpeed) did was to motivate all of the JS projects to improve the selector speeds. If you notice, some libraries really shine in FireFox because the use XPath for DOM selection while others, like jQuery,

[jQuery] Re: Slickspeed from Mootools

2007-11-02 Thread Rey Bango
No problem Prit. We've just discussed this so many times and I thought it would be easier to ask that you do a search since there was ooo much discussion about this in the past. Hopefully, you ran it in IE. I really do want you to see the speed difference. Rey prit wrote: Thanks for

[jQuery] Re: Custom function called in toogle()

2007-11-02 Thread Snook
Calling toggle() runs event.preventDefault. Whatever you want the click to do, you need to code it yourself. Ok, thanks. I have tried different implementation of preventDefault, regarding what I have found in this group. And probably I'm completely wrong because no one works for me. Here is

[jQuery] Re: Selector for Toggled Element

2007-11-02 Thread studiobl
Neither that (nor some form of that) seems to work. On Nov 1, 3:43 pm, motob [EMAIL PROTECTED] wrote: try $(table:hidden) or some form of that. On Nov 1, 2:30 pm, studiobl [EMAIL PROTECTED] wrote: Any suggestions on how to retrieve the display attribute of a toggled element?

[jQuery] Migrating from prototype to jquery

2007-11-02 Thread pytrade
I have the following code which will add error messages for ajax requests and a busy indicator at the bottom of the page. How would I migrate this to jquery? I've migrated from lightbox to thickbox and auto complete to auto complete, without any problem. I had one problem where the page would not

[jQuery] Re: Slickspeed from Mootools

2007-11-02 Thread NccWarp9
hmmm.. I ran the test also and got that jQuery is the fastest final time (less is better) MooTools:5073ms Prototype:5740ms jQuery: 2915 ms On Nov 1, 6:25 pm, prit [EMAIL PROTECTED] wrote: I have tried different javascript frameworks and I finally decided to use jQuery because of the ease

[jQuery] Help understanding bind and adding to the DOM.

2007-11-02 Thread Charles Sexton
Hello everyone, From this thread: http://groups.google.com/group/jquery-dev/browse_thread/thread/22c0b936d2060dc4/ I now know what I need to accomplish, however I do not understand how it works. Would someone be able to explain simply how to add data to the DOM? I had a quick look at Live Query

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread resetstudio
I think this is a great plugin. Malsup makes me happy already with his dimensions plugin (ok it is not perfect, all the divs that are containing floats return 0px as height then i have to use float:left on the container to discard this problem), and this livequery, wow, is what i've looked for.

[jQuery] Re: How to pull details info into master page (php/mysql)

2007-11-02 Thread Dave Buchholz - I-CRE8
Thanks Yehuda, Regards, Dave Buchholz I-CRE8 http://www.i-cre8.co.uk Skype ID: I-CRE8 -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Yehuda Katz Sent: 02 November 2007 01:19 To: jquery-en@googlegroups.com Subject: [jQuery] Re: How to pull

[jQuery] Re: clueTips hangs on FF with $ signs in the ajax data.

2007-11-02 Thread Karl Swedberg
Hi, I might need to see a test page to identify what's wrong, because I wasn't able to replicate the problem. I stuck some $$$ in a file and pulled it into a cluetip just fine. What type of data are you pulling in? Is it html or xml or json? If it's not html, make sure to set it with

[jQuery] Re: Canceling an animation

2007-11-02 Thread Yehuda Katz
You could always wrap it up in a plugin like deferred(fadeIn, 500) that exposes a stopDeferred() method and handles both cases. On 11/2/07, Gordon [EMAIL PROTECTED] wrote: To abort before the animation starts you'd use slearTimeout. In the case where the animation has already started you'd

[jQuery] Re: IE JSON eval problem

2007-11-02 Thread Michael Geary
That code shouldn't work in any browser. The fact that it works in Firefox is actually considered a bug, which I believe is being fixed in 3.0. eval() is supposed to be a method of the window object (i.e. a global function). It isn't supposed to be available as a method of every object. What is

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread Jonathan Sharp
I'd cast my vote for leaving it out of core for now. The beauty of jQuery is the leaness of the core. I've had my eye on LiveQuery for quite some time but haven't had a chance to put it into practice for our enterprise toolkit. Performance is a major concern but of greater issue is the

[jQuery] Re: select text for LI

2007-11-02 Thread Jonathan Sharp
I'm sure there's a more elegant solution but you could do something like: // Untested var about = $( 'selector for the li' ).clone().find(' ul').remove().end().html(); Cheers, -Jonathan On 11/2/07, sawmac [EMAIL PROTECTED] wrote: I'm trying to select text inside list items. I'm using

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread Jack Killpatrick
I 2nd Dan's idea. What has made me wary about dipping into using LiveQuery is: 1. loss of an element of control, compared to just calling a helper function at the right time to rebind events 2. concern about overhead, since (as I understand it), it's watching for DOM changes and hence maybe

[jQuery] Re: How do you do Client/Server interaction? (CakePHP/JSON/jQuery)

2007-11-02 Thread Tane Piper
Just to let you all know, I've put up a tutorial explaining it a bit more here: http://digitalspaghetti.me.uk/2007/11/02/developing-a-persistent-javascript-variable-with-cakephp-12-jquery/ Please feel free to comment as it probably could be improved upon. On 02/11/2007, Tane Piper [EMAIL

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread rolfsf
I don't have an easy answer for you, but it seems like you've tried a couple different techniques and haven't completely removed the old ones. For example, you've got both the original suckerfish javascript (sfhover) and superfish ( which is a jquery implementation of the suckerfish menu).

[jQuery] Re: Slickspeed from Mootools

2007-11-02 Thread sgrover
Just for laughs I ran that test in Konqueror 3.5.6. EVERY SINGLE TEST FAILED for both MooTools and Prototype. Every single test passed for jQuery. And here I thought jQuery would have at least a few failures seeing as Konqueror isn't the best supported browser for these types of

[jQuery] Re: select text for LI

2007-11-02 Thread Andy Matthews
never mind. I just ran a validate on that snippet of code and yours is the valid markup. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sawmac Sent: Friday, November 02, 2007 10:55 AM To: jQuery (English) Subject: [jQuery] select text for LI

[jQuery] Re: select text for LI

2007-11-02 Thread Andy Matthews
Isn't that invalid HTML? Should it be this instead? ul liindex.html/li liabout/li ul liindex.html/li limore.html/li /ul /ul -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of sawmac Sent: Friday, November 02, 2007 10:55 AM To:

[jQuery] select text for LI

2007-11-02 Thread sawmac
I'm trying to select text inside list items. I'm using jQuery's .text( ) method. Unfortunately, that returns the text of all children as well. That means for a nested list like this ul liindex.html/li liabout ul liindex.html/li limore.html/li /ul /li /ul

[jQuery] SuperFish Menu Flash

2007-11-02 Thread gracetec
Hi all, I have been testing the SuperFish menu and and very impressed with it's features. However, when I included a Flash slideshow my menu no longer can be seen. I have followed all advise I can find on forums re: CSS z-index values and setting param name=wmode value=transparent / still to no

[jQuery] Re: clueTips hangs on FF with $ signs in the ajax data.

2007-11-02 Thread vwRiver
Thanks, Karl. We have jquery.js running on our server, but it comes from the designer and I can not see the version info in the JS file. I downloaded the latest one and used it for testing. It works just fine. --vw

[jQuery] Re: Effects Issue

2007-11-02 Thread dacoder
figured it out, stupid me had the display block and none applied when fadeIn and FadeOut already are setting this On Nov 2, 7:59 am, dacoder [EMAIL PROTECTED] wrote: Not sure if I explained myself to clearly but really all it is, is the fact that my fadeIn and fadeOut effects were working with

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread rolfsf
I'd like to second Lee Hinde-3's comment. From a beginner's perspective, I don't really get it. I mean, when I read the description when it was first announced, I sensed that it was something great, and I've been wanting to use it, but I really don't understand enough about it and when to use

[jQuery] Star rating plugins

2007-11-02 Thread Michael Price
Hi all, Have a feeling a little later on I'm going to be doing a reviews system for a client of ours. Naturally I wish to use jQuery and if it's a five star system, use one of the star rating plugins. Which would people recommend, that work with jQuery 1.2.x? All suggestions appreciated! :)

[jQuery] Re: Effects Issue

2007-11-02 Thread dacoder
Not sure if I explained myself to clearly but really all it is, is the fact that my fadeIn and fadeOut effects were working with jQuery 1.1.2 but not with 1.1.4. If anyone knows why this might be happening that would be great, I've searched around and haven't found to many other situations like

[jQuery] Re: Ajax 'drop-down' menu using jQuery [amateur cry for help]

2007-11-02 Thread Vladimir
Thanks anyway :D On Oct 30, 10:19 pm, polyrhythmic [EMAIL PROTECTED] wrote: Vlad, there's no simple solution for what you're asking. There are plenty of drop-down menu jQuery plugins, but you'll have to adapt one to make it look like you want. A plugin is not really necessary for that

[jQuery] Re: IE JSON eval problem

2007-11-02 Thread mngd
Of course - how obvious, silly me, I'm new to JSON and had a mental block about the eval thing. The [0] you mentioned shouldn't have been there, I was simplifying my code before posting and forgot to remove it. Thanks! On Nov 2, 3:58 pm, Michael Geary [EMAIL PROTECTED] wrote: That code

[jQuery] Problem with Jorn's autocomplete plugin

2007-11-02 Thread Peter Bengtsson
I've tried deploying this but I'm having problems. http://jquery.bassistance.de/autocomplete/ The problem I have is that when I select an item from the autocomplete dropdown my input is reset with the value of that one only. So, if I start typing Stockholm, Copenhagen, Hels and then it offers

[jQuery] Re: popping up an image

2007-11-02 Thread GianCarlo Mingati
try tickbox http://jquery.com/demo/thickbox/ On Nov 2, 9:09 am, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hi, I tried the lightbox and like it, but it has some problem with my page, so can't be used. I'm looking for something very simple: show a image in a modal window when user click a

[jQuery] popping up an image

2007-11-02 Thread [EMAIL PROTECTED]
Hi, I tried the lightbox and like it, but it has some problem with my page, so can't be used. I'm looking for something very simple: show a image in a modal window when user click a link, any easy way to do that? thanks. A.C.

[jQuery] Validation plugin broken in IE6?

2007-11-02 Thread Josh Nathanson
Hey all, It seems that either the Validation plugin is broken in IE6, or I am going crazy. I set up very simple test cases: http://www.igigi.com/tests/testvalidate.html (with email validation) On IE6, JS alert errors are thrown which appear to be related to the email regex.

[jQuery] Linking rows on a dynamically generated table

2007-11-02 Thread Kyril Revels
Hi All -- I'm a bit new to Jquery, but I've been using it for the past few days and have really come to take a shining to it. However, recently I've run into an issue when trying to build a table w/ different links specified on each row. Here's my code: for (var i = 0; i surveys.length; i++)

[jQuery] Re: Performing a function if an element is present

2007-11-02 Thread Karl Swedberg
Hi Ezra, This is the perfect place for such questions. You can test for the existence of an element like this (for example): if ( $('#someid').length ) { // do your thing ... } --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 2, 2007, at 1:50

[jQuery] Advanced Problem - Any takers? (Repost - didn't seem to show up)

2007-11-02 Thread ja
I'm dynamically inserting html into a page that only contains an image. Such as... html body img src=http://my_domain.com/my_image.jpg/ /body /html my script has a large amount of html that i want to insert. the html is stored in a variable . Such as.. var my_var = divHI/div; (the actual html

[jQuery] Re: Slickspeed from Mootools

2007-11-02 Thread prit
Rey, I did notice the speed difference in IE. Its amazing to see how mootools performs almost the same or even a little less faster than jQuery. I never imagined that the speed would vary this much with the browser. Thanks for pointing this out. :) Again I am a newbie, trying out all kinds of

[jQuery] cluetip + rounded corners + arrows

2007-11-02 Thread johnsverre
Hello! I finally ended up with cluetip for my needs, but have been sitting here the whole day trying to figure out how to use arrows and rounded corners (in need of 4 backgrounds + 1 arrow at the same time). Any ideas on the approach? tried to modify the rounded-template, but sides keep

[jQuery] Re: LiveQuery (Discuss Please)

2007-11-02 Thread Brandon Aaron
I'd argue that it actually provides you more control over the element in the sense that you will know when it is initially added or removed from the DOM. It is actually pretty smart about how it watches for DOM changes. Thanks to jQuery's architecture this is all possible with very little

[jQuery] Performing a function if an element is present

2007-11-02 Thread Ezra B. Gildesgame
Hello, I'm getting started with jQuery and have read several tutorials, but would appreciate clarification: How can I create a simple conditional statement to check for the presence of a certain element on a page, such as an anchor with a certain class or id, and then perform a function? I

[jQuery] Re: Performing a function if an element is present

2007-11-02 Thread Josh Nathanson
Also, keep in mind that in many cases, you do not need to check for the existence of something as you might if you were using straight up JS. If you try to run a jQuery method on an empty jQuery object, it will not error. For example: $(#mydiv).show(); If #mydiv is not found, the jQuery

[jQuery] Re: Form Valdation Issues

2007-11-02 Thread Gonzo
Something like this should work: function checkRadio() { var checked = false; $('input.amount').each(function() { if ($(this).is(':checked')) { checked = true; return false; } });

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread Karl Swedberg
Hi there, Instead of this: var my_var = divHI/div; try this: var my_var = $(divHI/div); Hope that helps. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 2, 2007, at 1:53 PM, ja wrote: I'm dynamically inserting html into a page that only

[jQuery] Text Flickering/Distorting with Drop Down Menu (Superfish Javascript)

2007-11-02 Thread Keith
The rollovers and drop down items on my menu are causing the text on my site to distort and move. Not only the text in the menu, but also text underneath it, which I don't understand at all. Right now I am using the Superfish menu and the problem mainly occurs in Firefox:

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread gracetec
Hi rolfsf, Thanks for your response. I have re-checked all the code against a working example and the only difference appears to be the way in which the flash file is embedded. It works for this code: object classid=clsid:D27CDB6E-AE6D-11cf-96B8-44455354

[jQuery] Advanced Problem - Any takers?

2007-11-02 Thread ja
I'm dynamically inserting html into a page that only contains an image. Such as... html body img src=http://my_domain.com/my_image.jpg/ /body /html my script has a large amount of html that i want to insert. the html is stored in a variable . Such as.. var my_var = divHI/div; (the actual

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread Anthony Leboeuf(Worcester Wide Web)
Hi, it works because you used the : param name=WMode value=Transparent wmode=transparent You need this for elements to appear above the flash movie. -Tony gracetec wrote: Hi rolfsf, Thanks for your response. I have re-checked all the code against a working example and the only

[jQuery] Re: select text for LI

2007-11-02 Thread Jeffrey Kretz
Unfortunately, the text method by default returns the text of the element and all its children (not just on lists but all types of elements). This is similar to the IE method innerText. It's a bit roundabout, but maybe you could grab the innerHTML and then regex out the child contents. Regex

[jQuery] Re: cluetip + rounded corners + arrows

2007-11-02 Thread Karl Swedberg
Hi John Actually, you can't have arrows with the rounded-corners theme. The arrows option just sets the background-position property of div id=cluetip so that the background image for whatever image is specified in the stylesheet. This conflicts with the position set for that div's

[jQuery] Re: clueTips hangs on FF with $ signs in the ajax data.

2007-11-02 Thread Karl Swedberg
ah, glad to know that it's working with latest jquery.js. thanks for following up! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 2, 2007, at 12:18 PM, vwRiver wrote: Thanks, Karl. We have jquery.js running on our server, but it comes from

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread Olivier Percebois-Garve
You definitely need to include bgiframe, because without you have errors, and therefore the swfobject code cannot run. gracetec wrote: Hi rolfsf, Thanks for your response. I have re-checked all the code against a working example and the only difference appears to be the way in which the flash

[jQuery] Guess who is using jquery, too?

2007-11-02 Thread dfd
Take a look at the source from http://code.google.com :-) Regards, frank

[jQuery] Re: Guess who is using jquery, too?

2007-11-02 Thread Glen Lipka
Hard to read their code. Seems like really like its browser detection capabilities. They use that alot. Glen On Nov 2, 2007 2:16 PM, dfd [EMAIL PROTECTED] wrote: Take a look at the source from http://code.google.com :-) Regards, frank

[jQuery] Re: Guess who is using jquery, too?

2007-11-02 Thread Tane Piper
Not only that, but this: http://google-code-updates.blogspot.com/2007/11/my-how-weve-grown.html And we're pleased to use jQuery, the wonderful open source JavaScript library (not ours, we're just fans), to help power each page. On 02/11/2007, dfd [EMAIL PROTECTED] wrote: Take a look at the

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread ja
Karl, Thanks for the help, but it didn't seem to work. Any other suggestions? Josh On Nov 2, 1:49 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi there, Instead of this: var my_var = divHI/div; try this: var my_var = $(divHI/div); Hope that helps. --Karl _ Karl

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread ja
Karl, I just tried your suggestion, still no luck. Any other ideas? Josh On Nov 2, 1:49 pm, Karl Swedberg [EMAIL PROTECTED] wrote: Hi there, Instead of this: var my_var = divHI/div; try this: var my_var = $(divHI/div); Hope that helps. --Karl _ Karl

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread Mike Alsup
Karl, Thanks for the help, but it didn't seem to work. Any other suggestions? Josh It sure works for me htmlhead script type=text/javascript src=jquery-1.2.1.js/script script type=text/javascript var my_var = divThis text is appended!/div; $(function() {

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread abba bryant
Can you post the html you are trying to append? It sounds like you might have found a bug but seeing as how I can append fine with the simple samples given there might be some sort of problem in your appended markup that is triggering it. ja-6 wrote: Karl, Thanks for the help, but it

[jQuery] Re: How do you do Client/Server interaction? (CakePHP/JSON/jQuery)

2007-11-02 Thread abba bryant
You can do all of this with requestHandler component ( to check if an action is 'requested' by another view or element, router::parseExtensions ( to manage automatic template switching for requests mapped with a .js file extension ); view::requestAction ( to actually request the json ) and the

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread Karl Swedberg
On Nov 2, 2007, at 5:42 PM, Mike Alsup wrote: Karl, Thanks for the help, but it didn't seem to work. Any other suggestions? Josh It sure works for me htmlhead script type=text/javascript src=jquery-1.2.1.js/script script type=text/javascript var my_var = divThis text is

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread Mike Alsup
Hey Mike, That's a dandy image you put in there. ;-) Just seeing if you were paying attention, Karl!

[jQuery] Re: Advanced Problem - Any takers?

2007-11-02 Thread arpowers
from your example it looks like it is adding it .. as HTML to the page... I assume by 'text' you mean escaped... but your example shows it as not being escaped.. the mystery DIV element is new to me and I'm sure is causing the problem. My guess is that its a problem with the HTML in your

[jQuery] Cluetip takes elements title away

2007-11-02 Thread paazio
It seems that when trickering cluetip plugin: $('p.latest a').cluetip({width:'400px'}); It empties the given elements title value. This becomes a problem as I have thickbox also attached to the element and clicking on it makes the title, thus caption of the thickbox window undefined. I have it

[jQuery] Best Practice

2007-11-02 Thread Doug
Hello All, I am a newbie and am trying to learn jQuery. I created this function: function getRecord(id,URL){ jQuery(#ResultsTable tr).filter(.selected).removeClass(selected); jQuery(#+id).addClass(selected); . It goes on to return a record. The first

[jQuery] Re: Superfish, bgiframe, jQuery 1.2 issues...

2007-11-02 Thread rynoceris
Hey Joel, Thank you so much! I can't believe I forgot something that simple. After putting that in, the menu now works perfectly across all browser platforms. Again, thank you so much for your help! Ryan Ours

[jQuery] Re: select text for LI

2007-11-02 Thread Wizzud
_IF_ you only have text in your LIs then... $('li').each(function(){ alert($(this).html().match(/^([^]*)/)[0]); }); On Nov 2, 5:35 pm, Jonathan Sharp [EMAIL PROTECTED] wrote: I'm sure there's a more elegant solution but you could do something like: // Untested var about = $( 'selector

[jQuery] Re: fadeOut behaving funny

2007-11-02 Thread Wizzud
Set the fadeOut duration to 3 seconds (.fadeOut(3000);). Does the same thing still happen? On Nov 2, 2:28 pm, stef [EMAIL PROTECTED] wrote: i have a page where a form is submitted to the same page, using php (no ajax). if the query that writes the data to the db is successful it sets $marker

[jQuery] Re: Selector for Toggled Element

2007-11-02 Thread Wizzud
If you can't select it using an id ( $('#tableID') ) then there is something invalid in your HTML (duplicate ids?). If the table has a class and you can't find it using a class selector then there is something else fundamentally wrong. Can you give a bit more information? Like the table HTML,

[jQuery] Re: Custom function called in toogle()

2007-11-02 Thread Wizzud
function myToggle(toggleElem, showHideElem){ var showHide = $(showHideElem); $(toggleElem).toggle( function(){ showHide.show('slow'); }, function(){ showHide.hide('slow'); } ) .each(function(){ this.checked = !this.checked; }); } On Nov 2, 12:21 pm, Snook [EMAIL PROTECTED] wrote:

[jQuery] NEWS: Google Code Using jQuery

2007-11-02 Thread Rey Bango
While it was mentioned earlier, I found blog posts from Dion Almaer and DeWitt Clinton, both Google employees. Dion: http://almaer.com/blog/google-code-relaunches-new-redesign-using-jquery-great-video-content-and-more DeWitt:

[jQuery] Re: Cluetip takes elements title away

2007-11-02 Thread Wizzud
If it did not remove the title, the browser would show its own native prompt as well as cluetip showing its version. On Nov 2, 10:21 pm, paazio [EMAIL PROTECTED] wrote: It seems that when trickering cluetip plugin: $('p.latest a').cluetip({width:'400px'}); It empties the given elements title

[jQuery] Re: NEWS: Google Code Using jQuery

2007-11-02 Thread Benjamin Sterling
All I can say is... Wow. This is a big deal, IMO. On 11/2/07, Rey Bango [EMAIL PROTECTED] wrote: While it was mentioned earlier, I found blog posts from Dion Almaer and DeWitt Clinton, both Google employees. Dion:

[jQuery] AjaxCFC and blockUI - event binding issue

2007-11-02 Thread Jack Killpatrick
Hi All, I'm using AjaxCFC, which (at the time I pulled it down) came with jquery.block.js version: /* * jQuery blockUI plugin (by M. Alsup) * Version 0.4 (12/27/2006) * @requires jQuery v1.0 * @license: Free beer and free speech. Enjoy! */ The AjaxCFC code I have is used in a lot of places

[jQuery] Re: Text Flickering/Distorting with Drop Down Menu (Superfish Javascript)

2007-11-02 Thread Joel Birch
It seems that you have found the workaround for this Mac Firefox issue already, ie. setting opacity:.999 on the body element to force all the text permanently into the lighter anti-aliasing mode. Good stuff. Joel Birch.

[jQuery] Re: SuperFish Menu Flash

2007-11-02 Thread Joel Birch
On 03/11/2007, Olivier Percebois-Garve [EMAIL PROTECTED] wrote: You definitely need to include bgiframe, because without you have errors, and therefore the swfobject code cannot run. ...or remove the code that applies bgiframe to Superfish completely, and don't include the bgiframe plugin. It

[jQuery] Re: NEWS: Google Code Using jQuery

2007-11-02 Thread Sean Catchpole
yay \o/ ~Sean

[jQuery] Re: Best Practice

2007-11-02 Thread Sean Catchpole
I think you got the jist of it. Syntax looks just fine. The filter isn't necessary, but I doubt it will be depreciated in future releases. function getRecord(id,URL){ jQuery(#ResultsTable tr .selected).removeClass(selected); jQuery(#+id).addClass(selected);

[jQuery] Re: Best Practice

2007-11-02 Thread Joel Birch
On 03/11/2007, Sean Catchpole [EMAIL PROTECTED] wrote: function getRecord(id,URL){ jQuery(#ResultsTable tr .selected).removeClass(selected); jQuery(#+id).addClass(selected); ... ~Sean I think Sean meant jQuery(#ResultsTable tr.selected)... ...without a