[jQuery] Re: Allowing a .click() function to occur as many times as needed in tandem with .load() ?

2007-07-29 Thread inVINCable
Hm, I don't quite exactly understand what you are saying. I simply load into the div.fake because I do not want any data loaded. But firebug DOES show an ajax action taking place everytime I click that element, allowing me complete the ajax request. Thank you for your post though, I will look

[jQuery] Tieing elements together for a mouseout

2007-07-29 Thread mcraig
I have some navigation that works by clicking on one dom element and animating another. What I want to do now is tie the onmouseout event to BOTH those dom elements so that if the mouse cursor stays inside either of them, the navigation panel stays open, but when the mouse leaves either of them,

[jQuery] Re: access to dynamic DOM content/id

2007-07-29 Thread Jacques Jocelyn
Klaus, Thanks for the hint. very useful ! Jacques On Jul 28, 2:51 am, Klaus Hartl [EMAIL PROTECTED] wrote: Jacques Jocelyn wrote: All, Sorry if this question was asked before, but I've been searching but no real answer to this particular topic Please consider the following : if I

[jQuery] Re: Infinite animations

2007-07-29 Thread Kia Niskavaara
On 7/29/07, Sean Catchpole [EMAIL PROTECTED] wrote: It would be very easy to create a repeating animation, simply call the same animation again the callback function. Thanks. More importantly, I believe that this is a prefect situation for a gif animation. Doing javascript animations is

[jQuery] Re: finding the next highest z-index

2007-07-29 Thread George
If you need a way to identify the element with the highest z-index then you could try the :max() selector provided in the moreSelectors plugin. Something like $(DIV:max(zIndex)) would return the DIVs with the highest z-index. It is not a publicised feature of the moreSelectors plugin because

[jQuery] Re: Tieing elements together for a mouseout

2007-07-29 Thread George
Could you try binding the same function their mouseover/out events (or jQuery's hover event) Then inside that function, look at the event.target and event.relatedTarget to work out whether the mouse if simply moving between the two elements or actually entering/leaving them. George On Jul 29,

[jQuery] interesting JS animation, candidate for jQuery plugin

2007-07-29 Thread Stephan Beal
Hi, all! i just came across this by accident and thought it might interest some plugin author enough to write a similar feature for jQuery: http://imdb.com/title/tt0084787/faq scroll way down, or search for Are there any deleted scenes for this movie?, and look for the red text which says

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Stephan Beal
On Jul 29, 2:40 am, John Resig [EMAIL PROTECTED] wrote: My primary concern is that it isn't open, nor does it foster a community that promotes openness. Another concern about a subscription service is that it could very well offend the plugin authors who write the code but don't get part of

[jQuery] Re: My calendar

2007-07-29 Thread PeterKl
Can you now check my code: -- !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http:// www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /

[jQuery] Rename several divs

2007-07-29 Thread ahlt
Hi I've got three div elements with id as following: foo-1, foo-2 and bar-3. And now I want a js function to fetch all divs that have an id that starts with foo- and then replace it with bar- following with the corresponding number. I've found out how to select all elements whose id starts with

[jQuery] Cross Browser Checking - Any Tips?

2007-07-29 Thread Maggi
Hey guys! I was wondering if you had any tips / tricks for Cross Browser Checking? I'm always having trouble with Safari and because I can't get to a Safari browser on Mac every day it kinda gets left behind and that sucks because a large % of my visitors use Safari on Mac. Any ideas?

[jQuery] Re: My calendar

2007-07-29 Thread Peter Klevže
Can you now check my code: -- !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd; html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=iso-8859-1 /

[jQuery] Re: interesting JS animation, candidate for jQuery plugin

2007-07-29 Thread Jay Salvat
Hi Stephan, I took a look to their css file and html code. They use a simple but smart css trick. No javascript needed here. html span class=spoilerspanmy spoiler here/span/span css .spoiler { background-image: url(/images/spoilers.gif); border: 1px solid red; } .spoiler span {

[jQuery] Re: Cross Browser Checking - Any Tips?

2007-07-29 Thread Mike Alsup
Maggi, If you're on Windows then I would suggest downloading Safari 3 for Windows: http://www.apple.com/safari/download/ There are also services that will provide screenshots for your public pages: Any browser: http://browsershots.org/ Safari only: http://www.browsrcamp.com/ Mike On

[jQuery] Re: Allowing a .click() function to occur as many times as needed in tandem with .load() ?

2007-07-29 Thread Wizzud
1. the load() Klaus is trying to make the point that if you do not want any data loaded why are you running a load()? You are running the load() into an element that you have clearly stated does not exist, so in my opinion it is actually a bug in jQuery that is even allowing the ajax call to be

[jQuery] Re: Rename several divs

2007-07-29 Thread Klaus Hartl
ahlt wrote: Hi I've got three div elements with id as following: foo-1, foo-2 and bar-3. And now I want a js function to fetch all divs that have an id that starts with foo- and then replace it with bar- following with the corresponding number. I've found out how to select all elements whose

[jQuery] Re: interesting JS animation, candidate for jQuery plugin

2007-07-29 Thread Michael Geary
Actually, Jay, the JavaScript is required. The CSS uses a hover class which the JavaScript code applies to the element. hover has no intrinsic meaning here; they could have called it reveal and it would work the same, as long as the JavaScript code uses the same classname. You're probably

[jQuery] Re: finding the next highest z-index

2007-07-29 Thread Benjamin Sterling
George, That is awesome, I will give it a try. But I agree that the items being checked should be small, I am working on a shuffle plugin and the idea is that the items are limited to maybe 10 or below. Much appreciated. Ben On 7/29/07, George [EMAIL PROTECTED] wrote: If you need a way to

[jQuery] Re: Rename several divs

2007-07-29 Thread ahlt
On 29 Jul, 16:11, Klaus Hartl [EMAIL PROTECTED] wrote: Try this: $('[EMAIL PROTECTED]foo-]').attr('id', function() { return this.id.replace('foo', 'bar'); }); --Klaus Thank you very much. That solved my problem:)

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Rick Faircloth
The system I was thinking about wouldn't exclude any of the core team or plug-in authors from receiving fees. I didn't get into the details of it, but plug-in authors who maintained their plug-ins, tutorials, documentation, and metadata would receive part of the fees for their work. An

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Stephan Beal
On Jul 29, 6:49 pm, Rick Faircloth [EMAIL PROTECTED] wrote: An equitable system would have to be worked out, but no one who contributes would have been excluded... The Debian team recently (some months ago) got into a political pickle when they *hired* a release manager. The fact that anyone

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Rick Faircloth
But while money has the potential to build bridges, it more often than not just builds walls. Very true, Stephan. It does have pros and cons and I would only suggest it to prevent chaos in the system from lack of information management or to prevent jQuery from losing its push towards greater

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Stephan Beal
On Jul 29, 8:19 pm, Rick Faircloth [EMAIL PROTECTED] wrote: Do you know of a similar situation like what we've been discussing where a subscription service or something similar was successfully implemented? Now that you mention it... the closest things i'm aware of are: a) Commercial Linux

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Rick Faircloth
Karl, Is there a way to turn off the question mark that appear on mouse-over of a cluetip? I think it may lead my users to think that it implies that there may be something else to be seen other than a cluetip with an image. Rick From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Rick Faircloth
Do you know of a similar situation like what we've been discussing where a subscription service or something similar was successfully implemented? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Stephan Beal Sent: Sunday, July 29, 2007 1:21 PM

[jQuery] Safari 3 known issues

2007-07-29 Thread Tamm
Hello fellow jQuery users, I have noticed that a script of mine will not work in Safari, it involves the blockUI plugin and utilises the .click() event module, pseudo selectors and attributes selector and several instances of .css()nd I've ran the test suite and it says these are unavailable.

[jQuery] Re: Safari 3 known issues

2007-07-29 Thread John Resig
Those bugs that you see all revolve around one issue: http://dev.jquery.com/ticket/1349 Safari completely breaks accessing computed CSS properties and some DOM elements when display: none is set (which it is, in the test suite). I'm hoping to get a fix for this in for 1.1.4, which will be coming

[jQuery] Re: ScrollTo with Easing

2007-07-29 Thread John Resig
http://docs.jquery.com/JQuery_1.2_Roadmap On 7/29/07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: Is there a roadmap for jquery 1.2 that we can see and get a glimpse of what to expect in that version. -GTG On 7/27/07, John Resig [EMAIL PROTECTED] wrote:

[jQuery] Re: ScrollTo with Easing

2007-07-29 Thread Ganeshji Marwaha
Is there a roadmap for jquery 1.2 that we can see and get a glimpse of what to expect in that version. -GTG On 7/27/07, John Resig [EMAIL PROTECTED] wrote: http://docs.jquery.com/Frequently_Asked_Questions#When_will_jQuery_1.2_be_released.3F :-) End of August 2007. On 7/27/07, Simon

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Rick Faircloth
Thanks for the info... My idea would have been more like SourceForge. Subscribers (or donors would work) would get access to the central repository where all the work was done for you for plug-in testing with various core versions, various MyJQuery bundles of cores and plug-ins, etc.

[jQuery] question about import a js file into a webpage

2007-07-29 Thread Guapo
this question is not related to jQuery. but it confused me for a long time. i found some websites use the following syntax to import a js file or a css file into a webpage, who can explain what does the parameter after the ? ? thanks. --- link

[jQuery] Re: question about import a js file into a webpage

2007-07-29 Thread Michael Geary
It means whatever the server wants it to mean. It's just passed to the server as part of the URL. In this particular case it looks like it requests a specific version of the file, much like the way you can request a specific version of the Google Maps API:

[jQuery] Re: Infinite animations

2007-07-29 Thread Collin Allen
Morphing from color to color should be possible, perhaps by modifying the CSS background-color property using rgb(x,y,z) values. You could increment each value individually, or each in a repeating sequence. I'm not sure value changing method would produce the most visually pleasing results, but

[jQuery] problme with jquery...

2007-07-29 Thread Andy
Hi, I need help with small code that i hardly could not be able to solve myself. I have created subscribe forms that comes with two text field for first name and email address. Before I created database to insert data into the database, I have tested the form with picture background using div

[jQuery] Re: Cross Browser Checking - Any Tips?

2007-07-29 Thread Maggi
Hi Mike, This is something I've already tried. I've heard that Safari on Windows does not have the same HTML engine like Safari on Mac. You know if that's true? Sincerely, Magnus On Jul 29, 1:38 pm, Mike Alsup [EMAIL PROTECTED] wrote: Maggi, If you're on Windows then I would suggest

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Karl Swedberg
Hi Rick, On Jul 29, 2007, at 2:39 PM, Rick Faircloth wrote: Is there a way to turn off the question mark that appear on mouse- over of a cluetip? Now there is. :-) The default is the question mark if the tip attribute and the href attribute are the same. But now you can change it to

[jQuery] Re: Infinite animations

2007-07-29 Thread Karl Swedberg
animating from one style or class to another can be done with Interface's animate method. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jul 29, 2007, at 2:53 PM, Collin Allen wrote: Morphing from color to color should be possible, perhaps by

[jQuery] Stored width/height values in IE and Firefox

2007-07-29 Thread gecko68
Am I missing something regarding cross browser compatibility? When I try to read parseInt($(#tagCloudData).css('width')) I get NaN in IE, yet Firefox gives me the correct value. The width is NOT set in the style sheet or in the style tag, as it is variable. I want to read it's width. Any

[jQuery] Re: Stored width/height values in IE and Firefox

2007-07-29 Thread Olaf Bosch
gecko68 schrieb: Am I missing something regarding cross browser compatibility? try this parseInt($(#tagCloudData).width()) -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de www.akitafreund.de ---

[jQuery] Re: problme with jquery...

2007-07-29 Thread Michael Geary
Andy, here are a few debugging tips... 1) Post a link to a test page instead of including a code snippet in a message. 2) Where do you define the checkemail() function? 3) Use uncompressed copies of jQuery and Interface for debugging. 4) Load your page with Firebug enabled and the Break on

[jQuery] Re: Stored width/height values in IE and Firefox

2007-07-29 Thread Michael Geary
From: gecko68 Am I missing something regarding cross browser compatibility? When I try to read parseInt($(#tagCloudData).css('width')) I get NaN in IE, yet Firefox gives me the correct value. The width is NOT set in the style sheet or in the style tag, as it is variable. I want to

[jQuery] history_remote Plugin

2007-07-29 Thread Chango
Hi, i'm using the jquery.history_remote Plugin (http:// www.stilbuero.de/jquery/history/)...thanks Klaus! My question is: How to make SET a hash foreach content showed into Chapter DIV? I'm using this to submit a Search Form to chapter div: function load (url, formname) { var params =

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-29 Thread Rey Bango
Guys, I'd just like to interject. I think John has made his feelings about this issue pretty clear and for the immediate future, this isn't something that's going to be done; at least not by the jQuery team or the project. The reason I'm saying this is so we don't rehash a topic that's been

[jQuery] Re: good newsticker or rss ticker

2007-07-29 Thread Aaron Heimlich
Check this out: http://www.malsup.com/jquery/gfeed/ On 7/29/07, Mitchell Waite [EMAIL PROTECTED] wrote: I'm looking for a good jQuery plugin that lets me display rss feed content from collection of sources. The ones in the plugin area are primitive. Thanks Mitch -- Aaron

[jQuery] Re: Mootools

2007-07-29 Thread DaveG
Reason I asked about Mootools is I love there slideshow. It allows doing the Ken Burns effects that was mentioned Nicolas last week. Check out this wicked class demo: http://www.electricprism.com/aeron/slideshow/ Wow -- that's a helluva plugin, and a *really* great demo. ~ ~ Dave

[jQuery] [NEWS] Tane Piper's jQuery Maps Framework on DZone

2007-07-29 Thread Rey Bango
Our own Tane Piper has a post up on DZone.com linking to a posting of his new jQuery plugin, the jQuery Accessibility Plugin. It's designed to provide class-based text-size switching, as well as full Stylesheet switching on the fly. In addition, Tane has been busting his derriere to update

[jQuery] [NEWS] 5 JavaScript Tricks Made Easy with jQuery on DZone.com

2007-07-29 Thread Rey Bango
Continuing on the DZone path, community member Brian Reindel has an entry on the site about his 5 JavaScript Tricks Made Easy with jQuery. Some of you may have seen his email about this just the other day but its truly important to support our community by voting his post up. Keep in mind

[jQuery] [NEWS] More jQuery Dzone Postings

2007-07-29 Thread Rey Bango
Holy cow, Dzone.com is just chock-full-a jQuery posts today: Unobtrusive AJAX with jQuery and Rails: http://www.dzone.com/links/unobtrusive_ajax_with_jquery_and_rails.html Also, Javascript guru one of my favorite authors, Chris Heilmann, put out a DOM cheat sheet that everyone should keep

[jQuery] Newcomer to jQuery, trouble using ajax functions alongside built in jQuery behaviours

2007-07-29 Thread Jim Newfer
Hello everyone, I am quite new to jquery but love its ease of use! I have all the basic functions down pat, although I am struggling with the load() function, what appears to be quite simple is very puzzling to me. To provide an example of what I am trying to accomplish via jQuery can be found

[jQuery] Re: Newcomer to jQuery, trouble using ajax functions alongside built in jQuery behaviours

2007-07-29 Thread Matt Stith
Some code samples would really be helpful here. You can copy any paste, just change any info like URLs that you dont want us to know. Its hard to describe a block of code using a paragraph of text :P On 7/29/07, Jim Newfer [EMAIL PROTECTED] wrote: Hello everyone, I am quite new to jquery but

[jQuery] Re: Cross Browser Checking - Any Tips?

2007-07-29 Thread Mike Alsup
This is something I've already tried. I've heard that Safari on Windows does not have the same HTML engine like Safari on Mac. You know if that's true? I don't know if the rendering engine is identical for Mac and Windows, but I think it's pretty close. I know for certain it exhibits

[jQuery] Re: problme with jquery...

2007-07-29 Thread Wizzud
Your code below is incomplete, but also wrong. The way you have it set out, after a POST the page begins with javascript, then the DOCTYPE! Basically, you should have this sort of structure... ?php //define your php functions, eg function GetSQLValueString(...){ ... } //set up some variables,

[jQuery] [NEWS] New jQuery Plugins Found in the Wild

2007-07-29 Thread Rey Bango
AjaxRain.com just continues to amaze as they've managed to collect links to 459 JS/DOM/Ajax plugins. Being a jQuery-powered site, they really do show the project a lot of love and there are a boatload of jQuery plugins listed. Some that I don't recall ever being posted here are: Beyond

[jQuery] Re: ClueTip Issue: I can only get the tip to display to the right...

2007-07-29 Thread Rick Faircloth
I like the new flexibility of styles. nice. Concerning changing the cursor: I haven't been able to find where to change the cursor option. Give me a hint? :o) Rick From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Sunday, July 29, 2007 6:19

[jQuery] Re: Newcomer to jQuery, trouble using ajax functions alongside built in jQuery behaviours

2007-07-29 Thread Jim Newfer
Ah, of course Matt, I apologize, here ya go :) $(div.vote_for_selected).click(function(){ //first load content $(div.divvoteinto).load(/stories/vote/2/ + $storyid); //then set up new value to display $new_votes_for = $votes_for * 1 - 1; if ($new_votes_for == ) { $new_votes_for = 0; }

[jQuery] Re: Newcomer to jQuery, trouble using ajax functions alongside built in jQuery behaviours

2007-07-29 Thread Jim Newfer
Matt: Ah, of course ! Here ya go ;) $(div.vote_against_selected).click(function(){ //first load content $(div.storyinfo).load(/stories/vote/1/ + $storyid); //then set up new value to display $first_new_votes_for = $votes_for * 1 + 1; $first_new_votes_against = $votes_against * 1 - 1; if

[jQuery] Re: History anchors with variable and value (#var=value)

2007-07-29 Thread Chango
I need this too! On Jul 11, 4:22 pm, boomertsfx [EMAIL PROTECTED] wrote: Does anyone have any comments on this? I know there is a history/ remote plugin by Klaus, but that is more for static sites... I want to pass/ update variables via the anchor. I can't seem to find much info on this,