[jQuery] Re: Behaviour difference in XML document selectors in 1.13?

2007-07-04 Thread Ted McFadden
Hi, Thanks for the fix. It works in firefox, but in IE7, selection appears to still go wrong down in 'unique' (jquery 1.1.3, line 624) which is called by find: the: first[i].mergeNum assignment raises a: Object doesn't support this property or method. I see this error

[jQuery] Re: jQuery 1.1.3 - CSS/XPath selector bug?

2007-07-04 Thread jcsiegrist
Hi, I'm getting the same error on $('[EMAIL PROTECTED]/common.js]') error on line 2689: z has no properties this used to work under 1.1.2 I've tried adding backslashes to the period and forward slashes, but that did not help. :jc On Jul 3, 12:49 pm, Bernd Matzner [EMAIL PROTECTED] wrote:

[jQuery] What would be the best way to accomplish this?

2007-07-04 Thread Armand Datema
http://nokiko.howardshome.com/jqhowto.gif I am looking for the best way to create the above design. You have a title and a summary, you only get to see one line of the summary and need to click to see the rest. Is there an easy way to do this that it only displayss the first line or do i need

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-04 Thread Dave Probert
Sorry mate, but you are breaking the rules of HTML (as laid down by higher powers than us), as was mentioned above - ID's are individual items on a page - There should NEVER be more than one with the same ID. These are Unique ID's. You will need to go back to your original design and change it

[jQuery] Re: What would be the best way to accomplish this?

2007-07-04 Thread Dave Probert
Sorry mate, your link doesn't work. On Jul 4, 2:09 pm, Armand Datema [EMAIL PROTECTED] wrote: http://nokiko.howardshome.com/jqhowto.gif I am looking for the best way to create the above design. You have a title and a summary, you only get to see one line of the summary and need to click

[jQuery] opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread mouqx xu
following is a simple, the opacity does not works in IE6.0. Is this a bug, or should I use other expressions? html head script type=text/javascript src=/js/jquery/jquery-1.1.3.js/script !--script type=text/javascript src=/js/jquery/jquery-1.1.2.js/script--!-- this works-- script function test(){

[jQuery] Re: Resizing a iframe to height=100% using jQuery

2007-07-04 Thread Kia Niskavaara
The page gets three times as high as expected in FF for Mac. But that might be because of the content in the iframe. I'll try it later today. On 7/4/07, Glen Lipka [EMAIL PROTECTED] wrote: Whipped up a Demo page: http://www.commadot.com/jquery/dimensions/iframe.htm I did height and width. I

[jQuery] Re: How to select the kast TR of a TABLE?

2007-07-04 Thread Eric Crull
Even easier: $('tr:last') try: var lastrow = $('tr:last').attr('id') alert(lastrow) On Jul 3, 10:59 pm, howa [EMAIL PROTECTED] wrote: var row = jQuery(#test tbody tr : last); something like that? (of coz the above one didn't work) thanks.

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-04 Thread Eric Crull
Well, then Ganeshji is correct. Every id on a page has to be unique. In your example you have 3 ids, all named btcontrole. You can only have one named btcontrole. Change the ids of the other two. The browser is ignoring the ids of the anything after the first span which has already registered

[jQuery] Designerly Ajax ? from newbie

2007-07-04 Thread jsw_nz
I am a newbie with jQuery (primarily a designer) and am looking for a tutorial (or code) that might integrate a basic ajax call to myExternalContent.php?id=3 in a designerly waywith this in mind. (1) user clicks on a link to make ajax request to bring new content to a #targeted div

[jQuery] Re: thickbox onload

2007-07-04 Thread Eric Crull
In another thread Felix Geisendorfer published a little plugin that he uses to rebind thickbox after the document has finished loading. The line below starting tb_show calls the thickbox. I'm sure you could easily use this as a starting point. Here's the original thread:

[jQuery] Re: How to select the kast TR of a TABLE?

2007-07-04 Thread G[N]Urpreet Singh
this works size = $($the_table).find(tr).size(); last= $($the_table).find(tr).gt(size-2); $(last).addClass(lastrow); Gurpreet On 7/4/07, howa [EMAIL PROTECTED] wrote: var row = jQuery(#test tbody tr : last); something like that? (of coz the above one didn't work) thanks. --

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE Safari

2007-07-04 Thread garyhall01
I had this problem and managed a workaround by adding a line in the jqModal.css file: In the * html .jqmWindow selector add the line: left: expression(Math.round(50 * (document.documentElement.offsetWidth || document.body.clientWidth) / 100) + 'px'); (Note: the value of 50 relates the

[jQuery] Re: Tabs plugin, using iframes

2007-07-04 Thread Klaus Hartl
Kia Niskavaara wrote: Thank you for your suggestion. Yes, it does work. One problem though: I've got lots of tabs. And the src of all iframes get loaded at once. I'd prefer if each iframe got loaded when I click on that tab, using the loading.gif -- like the

[jQuery] Re: jQuery plugin architecture info

2007-07-04 Thread Klaus Hartl
Jörn Zaefferer wrote: Adding to the local scope could overwrite a prototype method with the event handler. Imagine a handler-plugin: $.fn.handler = function() { ... }; Now adding to this could actually have a bad effect: $.fn.plugin = function() { this.handler = function() {

[jQuery] Re: What would be the best way to accomplish this?

2007-07-04 Thread Gordon
I suppose you could set the height of your summery to 1em to reveal the single line of text in the hidden state, and set it to whatever is needed for the full summery state. On Jul 4, 8:09 am, Armand Datema [EMAIL PROTECTED] wrote: http://nokiko.howardshome.com/jqhowto.gif I am looking for

[jQuery] Re: $(#container element.class) possible, but what about everything except a class?

2007-07-04 Thread Gordon
$(#container).children ().not(.class2) On Jul 3, 11:02 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I'd like to be able to select all elements in a container except element.class2 for example, is that possible? Thanks... haven't found any docs on this!

[jQuery] jqModal and curvycorners conflict in IE

2007-07-04 Thread David Duymelinck
Hello, I use the latest jqModal and the curvycorners plugin together with the 1.27 lite version of curvy corners and in IE6 the dialog is shown under the overlay. In IE7 the overlay is appended to the bottom of the page. Is this a bug or something that can't be avoided? --David

[jQuery] Re: How to find elements with an exact text content?

2007-07-04 Thread Renato Formato
Nicolas Hoizey ha scritto: Hi, I'm currently using :contains() to find elements that contain some string: http://docs.jquery.com/DOM/Traversing#contains.28_str_.29 I would like now to find only elements that have a text content exactly equal to the string I chose. I didn't find any

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread SeViR
In IE 6 CSS opacity doesn't exists, you must use filter:alpha(opacity=50) so $(div).css({filter:alpha(opacity=50)}); //Only in browser = IE6 or better $(div).fadeTo(fast, 0.5, function(){ alert(Animation Done.); }); //cross-platform opacity mouqx xu escribió: following is a simple,

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Sam Collett
While it doesn't exist as a CSS property in IE 6, you used to be able to do $(#foo).css(opacity,0.8) and it would still apply the opacity the the element(s) it was applied to. On Jul 4, 10:13 am, SeViR [EMAIL PROTECTED] wrote: In IE 6 CSS opacity doesn't exists, you must use

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
Ok, I'm wrong :-P I see, jQuery checks some css properties and if IE, set the proper filter. But in my test with jQuery 1.1.3 debugging with IE Developer toolbar I get: DIV id=test style=opacity: 0.5 ... So opacity: 0.5 is not a correct CSS style for IE. I continue with the tests, there

[jQuery] Manipulating a stylesheet directly

2007-07-04 Thread Gordon
When working with jquery and javascript in general I have found that manipulating DOM attributes, especially those associated with the appearence of an element, can be rather slow. In one script I am working on I have to animate a group of elements at once, but each element has to get a

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread mouqx xu
But in 1.1.2 or below, .css(opacity, 0.5) will be translated to filter: alpha(opacity=50), I wonder why 1.1.3 remove this feature. On 7/4/07, SeViR [EMAIL PROTECTED] wrote: In IE 6 CSS opacity doesn't exists, you must use filter:alpha(opacity=50) so $(div).css({filter:alpha(opacity=50)});

[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread R. Rajesh Jeba Anbiah
On Jun 30, 1:34 am, Rey Bango [EMAIL PROTECTED] wrote: snip For more details please visit the jQuery blog entry here: http://jquery.com/blog/2007/06/28/163/ The contact e-mail editor AT visualjquery DOT com is not reachable. -- ?php echo 'Just another PHP saint'; ? Email:

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
There is a bug in jQuery attr function in 1.1.3 jQuery code - attr: function(elem, name, value){ var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props; // Certain attributes only work when accessed via the old DOM 0 way if ( fix[name] ) { if

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Francisco José Rives
Fixed in the latest trunk version :-D On 7/4/07, Francisco José Rives [EMAIL PROTECTED] wrote: There is a bug in jQuery attr function in 1.1.3 jQuery code - attr: function(elem, name, value){ var fix = jQuery.isXMLDoc(elem) ? {} : jQuery.props; //

[jQuery] Re: What would be the best way to accomplish this?

2007-07-04 Thread Armand Datema
http://dnnportals.howardshome.com/jqhowto.gif On 7/4/07, Dave Probert [EMAIL PROTECTED] wrote: Sorry mate, your link doesn't work. On Jul 4, 2:09 pm, Armand Datema [EMAIL PROTECTED] wrote: http://nokiko.howardshome.com/jqhowto.gif I am looking for the best way to create the above

[jQuery] Re: Manipulating a stylesheet directly

2007-07-04 Thread Michael Geary
You are definitely on the right track, Gordon. Here's the code you need: // Add a stylesheet with the given CSS styles (a text string) // and return a reference to it function addStyleSheet( css ) { var sheet = document.createElement( 'style' ); sheet.type =

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Sam Collett
While it is fixed in SVN, I would rather wait till the next release (1.1.3.1 rather than 1.1.4). So for the time being, I am sticking with 1.1.2 (for work related sites). On Jul 4, 11:33 am, Francisco José Rives [EMAIL PROTECTED] wrote: Fixed in the latest trunk version :-D

[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread Armand Datema
how about jquery and google gears, there is allready a google gears and jsext Armand On 7/4/07, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote: On Jun 30, 1:34 am, Rey Bango [EMAIL PROTECTED] wrote: snip For more details please visit the jQuery blog entry here:

[jQuery] What's happened to $.expr['@'] in jQuery 1.1.3?

2007-07-04 Thread Diego A.
Hi John (and the team), Congratulations on the new release, it's looking great. Can't wait for 1.2... The only small problem I've had is with an old plugin I've been used for a while, which adds regular expression selectors: (function($){ $.extend($.expr['@'], { =~:

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread Michael Stuhr
Sam Collett schrieb: While it is fixed in SVN, I would rather wait till the next release (1.1.3.1 rather than 1.1.4). So for the time being, I am sticking with 1.1.2 (for work related sites). On Jul 4, 11:33 am, Francisco José Rives [EMAIL PROTECTED] wrote: Fixed in the latest trunk version

[jQuery] Re: What's happened to $.expr['@'] in jQuery 1.1.3?

2007-07-04 Thread Ralf S. Engelschall
On Wed, Jul 04, 2007, Diego A. wrote: Hi John (and the team), Congratulations on the new release, it's looking great. Can't wait for 1.2... The only small problem I've had is with an old plugin I've been used for a while, which adds regular expression selectors: (function($){

[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread R. Rajesh Jeba Anbiah
On Jul 4, 4:15 pm, Armand Datema [EMAIL PROTECTED] wrote: how about jquery and google gears, there is allready a google gears and jsext snip Hmm... Why hijacking thread? Start a new thread. -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog:

[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread Armand Datema
no hijacking i was suggesting an article On 7/4/07, R. Rajesh Jeba Anbiah [EMAIL PROTECTED] wrote: On Jul 4, 4:15 pm, Armand Datema [EMAIL PROTECTED] wrote: how about jquery and google gears, there is allready a google gears and jsext snip Hmm... Why hijacking thread? Start a new

[jQuery] Re: How to find elements with an exact text content?

2007-07-04 Thread Nicolas Hoizey
Hello Renato, I also saw your answer on the french list... ;-) I'm currently using :contains() to find elements that contain some string: http://docs.jquery.com/DOM/Traversing#contains.28_str_.29 I would like now to find only elements that have a text content exactly equal to the

[jQuery] Re: opacity in IE6.0 not works with jquery-1.1.3

2007-07-04 Thread jsw_nz
Hi mouqx xu I came across this issue as well ...seems the newest 113 has gone through some tweaks This page may be helpful http://malsup.com/jquery/test/test.html - there is a version that works r2213 - however it is uncompressed at this stage - likely to be updated soon my second day with

[jQuery] Re: How to find elements with an exact text content?

2007-07-04 Thread Nicolas Hoizey
You can try the powerful .filter() method with an anonymous function as its argument: $('someElement').filter(function() { return $(this).text() == 'Some text'; }); It works well, but wouldn't it be very useful (and very write less, do more) to have such a feature:

[jQuery] simple ahref toggle problem [beginner]

2007-07-04 Thread tlob
Hey there I have a simple beginner problem. I have a link, that is opening a new windows with flash sound in it the client wants that! hmpff.. After I clicked the link sound on the a href text should change to sound off. also the link itself should change to javascript:close.windowname;

[jQuery] Re: 1.1.3 speed regression for selection of tags

2007-07-04 Thread corpore
I can confirm Karls findings. The slowdown of 1.1.3 is quite obvious when, for example, using the interface plugin 'floating window' http://interface.eyecon.ro/demos/windows.html http://interface.eyecon.ro/demos/windows.html . On minimizing/maximising this window disturbing visual animation

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-04 Thread Alexsandro_xpt
Uhmm, now I understand. But, It's stranger, I have to use same named class design in two spans and one table, I can't make it, cos that two span and table is diferent layout. The table contein some HTML button panel, and span has two label colls and those must be fadeOut when new form fadeIn

[jQuery] Jquery 1.1.3 and Validation plugin problems

2007-07-04 Thread voltron
Hi all! Excuse me if my question is so obvious, I just joined today :-) I would like to use Jörn Zaefferer´s Validation plugin(http:// bassistance.de/jquery-plugins/jquery-plugin-validation/) unfortunately it does nor work with Jquery 1.1.3, it fails with errors stating that it cant find

[jQuery] Validation plugin and Version 1.1.3

2007-07-04 Thread voltron
Hi all! Excuse me if my question is so obvious, I just joined today :-) I would like to use Jörn Zaefferer´s Validation plugin(http:// bassistance.de/jquery-plugins/jquery-plugin-validation/) unfortunately it does nor work with Jquery 1.1.3, it fails with errors stating that it cant find

[jQuery] Validation plugin and Version 1.1.3

2007-07-04 Thread voltron
Hi all! Excuse me if my question is so obvious, I just joined today :-) I would like to use Jörn Zaefferer´s Validation plugin(http:// bassistance.de/jquery-plugins/jquery-plugin-validation/) unfortunately it does nor work with Jquery 1.1.3, it fails with errors stating that it cant find

[jQuery] Re: ANNOUNCE: Call for Articles for Visual jQuery Magazine

2007-07-04 Thread R. Rajesh Jeba Anbiah
On Jul 4, 5:10 pm, Armand Datema [EMAIL PROTECTED] wrote: no hijacking i was suggesting an article Oh, cool. Ok -- ?php echo 'Just another PHP saint'; ? Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

[jQuery] Re: .change for created select menu

2007-07-04 Thread NBoringron
I was setting up a simplified version on a different page to show you and the problem was still there. But then I tried your earlier suggestion on the new simplified version and it worked fine. I must have done something to break it on my first attempt, although I'm still not sure what exactly.

[jQuery] Re: Jquery 1.1.3 and Validation plugin problems

2007-07-04 Thread tlob
Hello It looks like the plugin is looking for jquery.js You include it with jquery/jquery-1.1.3.js try to rename he include js file to jquery.js and try again. This is just my 5cent toughts didnt tried it. cheers thomas On 4 Jul., 15:21, voltron [EMAIL PROTECTED] wrote: Hi all! Excuse

[jQuery] library of common needed functions

2007-07-04 Thread Michael Stuhr
before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. if i would have to use prototype: i tried this simple thing: script type=text/javascript

[jQuery] OT: iPhone Offical Docs

2007-07-04 Thread Rey Bango
Ajaxian's been really kicking butt lately in terms of iPhone news and today they continue with another comprehensive posting about iPhone web development tips. http://ajaxian.com/archives/iphone-web-development-tips-and-official-documentation-released Here are some interesting tidbits from

[jQuery] encoding(charset) problem

2007-07-04 Thread Guoliang Cao
Hi, I'm using jQuery 1.1.3 in my AJAX-based game viewer. I download game data through ajax calls. Game data are mostly encoded in gb2312. I currently have a problem: if I don't change the server side setting to send data in gb2312 format, I got unreadable characters on client side. Is it

[jQuery] encoding(charset) problem

2007-07-04 Thread Guoliang Cao
Hi, I'm using jQuery 1.1.3 in my AJAX-based game viewer. I download game data through ajax calls. Game data are mostly encoded in gb2312. I currently have a problem: if I don't change the server side setting to send data in gb2312 format, I got unreadable characters on client side. Is it

[jQuery] encoding(charset) problem

2007-07-04 Thread Guoliang Cao
Hi, I'm using jQuery 1.1.3 in my AJAX-based game viewer. I download game data through ajax calls. Game data are mostly encoded in gb2312. I currently have a problem: if I don't change the server side setting to send data in gb2312 format, I got unreadable characters on client side. Is it

[jQuery] encoding(charset) problem

2007-07-04 Thread Guoliang Cao
Hi, I'm using jQuery 1.1.3 in my AJAX-based game viewer. I download game data through ajax calls. Game data are mostly encoded in gb2312. I currently have a problem: if I don't change the server side setting to send data in gb2312 format, I got unreadable characters on client side. Is it

[jQuery] text() concatenation

2007-07-04 Thread XASD
Is there optimal way to concatenate separate text nodes returned by text() for several nodes using particular character/string?I'm interested in some kind of text()/js string.join(,) combination,it would be nice to have array of text node values instead of preconcatenated ones from text()

[jQuery] Re: jqDnR + jqModal -- dragging causes jump in IE Safari

2007-07-04 Thread rolfsf
I'll give that a try, since I primarily need to fix IE6, but then I'm still puzzled why Safari is (and Firefox isn't) affected. garyh wrote: I had this problem and managed a workaround by adding a line in the jqModal.css file: In the * html .jqmWindow selector add the line: left:

[jQuery] Re: .fadeOut In mutiple elements don't work. why? what's wrong?

2007-07-04 Thread Ganeshji Marwaha
Glad that you are getting into standards now. Again, i understand ur concern. You are saying that classes should be used only for styling... But it is not true. Truly speaking classes are a hook left in the HTML for other languages to take advantage. One such language is CSS, and javascript can

[jQuery] Tooltop opacity in IE

2007-07-04 Thread Jörn Zaefferer
Hi folks, I've some trouble with opacity in IE in relation to the tooltip plugin. So far the plugin used opacity only via stylesheets. The idea to set the opacity via jQuery isn't that non-obvious, but so far I never tried it. Images explain more then words, so please just take a look with

[jQuery] Re: library of common needed functions

2007-07-04 Thread Jörn Zaefferer
Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the methods plugin a try: http://dev.jquery.com/browser/trunk/plugins/methods/ -- Jörn

[jQuery] Incompatibility between jqem.js and jQuery 1.1.3

2007-07-04 Thread [EMAIL PROTECTED]
Hi all, Since installing jQuery 1.1.3, a major memory problem has arisen in which 99% of the cpu is used. I did lots of tests and tracked it down to http://davecardwell.co.uk/javascript/jquery/plugins/jquery-em/0.2/ Is anybody else using this plugin? If so, are you experiencing the memory

[jQuery] Re: library of common needed functions

2007-07-04 Thread Michael Stuhr
Jörn Zaefferer schrieb: Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the methods plugin a try:

[jQuery] Re: library of common needed functions

2007-07-04 Thread Jörn Zaefferer
Michael Stuhr wrote: Jörn Zaefferer schrieb: Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the methods plugin a try:

[jQuery] Re: library of common needed functions

2007-07-04 Thread Jörn Zaefferer
Michael Stuhr wrote: Jörn Zaefferer schrieb: Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the methods plugin a try:

[jQuery] Re: library of common needed functions

2007-07-04 Thread Michael Stuhr
Jörn Zaefferer schrieb: Michael Stuhr wrote: Jörn Zaefferer schrieb: Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the methods plugin a try:

[jQuery] jQuery Survey - July 4, 2007

2007-07-04 Thread Glen Lipka
Please take a moment to fill out the following jQuery survey. 10 quick multi-choice questions. It will help us understand the community and focus our energies in the future. * http://www.surveymonkey.com/s.aspx?sm=uB_2bAIx8Qg1Tc7gikoMXEnQ_3d_3d *The first million respondants get an autographed

[jQuery] Release: Tooltip plugin 1.1

2007-07-04 Thread Jörn Zaefferer
This update to the jQuery Tooltip plugin brings a few minor yet very useful features and some very important bug fixes. A full list of changes can be found in the changelog: http://jquery.bassistance.de/tooltip/changelog.txt. Maybe more useful are improvements on the project structure. In

[jQuery] Re: library of common needed functions

2007-07-04 Thread Jörn Zaefferer
Michael Stuhr wrote: Jörn Zaefferer schrieb: Michael Stuhr wrote: Jörn Zaefferer schrieb: Michael Stuhr wrote: before using prototype or such frameworks (too big!) are there any other small libs with common functions (extending String, Array ... ) like escapeHTML() etc. You could give the

[jQuery] Re: Basic Example not working

2007-07-04 Thread Shelane
You tried wrapping it in a ready function? script type=text/javascript $(function(){ $(a).click(function(){ alert(ahh); return false; }); }); /script On Jul 4, 12:10 pm, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: I have the following code in my file, the src for the jquery file is

[jQuery] Problem with a possible race condition

2007-07-04 Thread Christopher Jordan
Hi folks, I'm having a problem that I hope someone out here can help me solve. I'm using thickbox to popup a dialog that asks a user for one piece of information in a text box. I want to set focus to that text box once the dialog is on screen, but I seem to be running into a race condition

[jQuery] JQuery Taconite and IE7

2007-07-04 Thread Chuck Lawson
I'm still very new at jQuery, but I've been having great success with the jQuery Taconite plugin -- at least until users tried using it on IE instead of Firefox or Safari. The problem I'm having is that the second time I try calling Taconite, IE displays the response page from the server, rather

[jQuery] Re: JQuery Taconite and IE7

2007-07-04 Thread Mike Alsup
Chuck, Using inline event handlers (onclick) in the response is not supported by the Taconite plugin. It happens to work in FF, but it was a design decision not to add the overhead required to make it work in IE. You can achieve the same affect by changing your command doc a bit. For example:

[jQuery] Re: Tooltop opacity in IE

2007-07-04 Thread Ganeshji Marwaha
wow, they look great... as u already mentioned, the pretty tooltip isn't pretty in IE ;-) -GTG On 7/4/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: Hi folks, I've some trouble with opacity in IE in relation to the tooltip plugin. So far the plugin used opacity only via stylesheets. The idea

[jQuery] can't get hoverTable to work

2007-07-04 Thread Rick Pasotto
Could someone look at http://monday6o.org/assign.php and tell me what I have wrong? There is a pause when the page loads so I know the script runs but the rows don't get highlighted when hovered over. In the document head I have: script type=text/javascript src=/js/jquery.js/script script

[jQuery] Re: JQuery Taconite and IE7

2007-07-04 Thread Chuck Lawson
Thanks Mike -- that worked great!!!

[jQuery] Re: Problem with a possible race condition

2007-07-04 Thread Christopher Jordan
Okay, just an update for anyone thinking of helping. I ran the dialog page by itself (sans thickbox) and the focus gets set just fine. So this is somehow related to thickbox. I would greatly appreciate any help. Cheers, Chris Christopher Jordan wrote: Hi folks, I'm having a problem that

[jQuery] Re: Manipulating a stylesheet directly

2007-07-04 Thread Michael Geary
I left out one line of code in my previous reply. Add this line before the two function definitions: var head = document.getElementsByTagName('head')[0]; Oops! :-) -Mike From: Michael Geary You are definitely on the right track, Gordon. Here's the code you need: // Add a

[jQuery] how can I prohibit from users pasting content into text boxes?

2007-07-04 Thread PaulM
how can I prohibit from users pasting content into text boxes?

[jQuery] Websnapr using jQuery

2007-07-04 Thread Kia Niskavaara
A long shot. Is there a plugin that can put bubbles on a page and position them correctly, based on the mouse position? Like the Websnapr preview service? http://www.websnapr.com/previewbubble/ All I've found is the link-preview: http://www.frequency-decoder.com/2006/10/25/link-preview-v2/ But

[jQuery] Re: how can I prohibit from users pasting content into text boxes?

2007-07-04 Thread Terry B
disable the text box On Jul 4, 5:25 pm, PaulM [EMAIL PROTECTED] wrote: how can I prohibit from users pasting content into text boxes?

[jQuery] PACKER3 issues

2007-07-04 Thread Will Arp
Dear list, this has been fixed in latest jquery svn, but still need fixing in the form and metadata plugins. - eval(data = + data); + data = eval(( + data + )); related to: Ticket #1298 http://dev.jquery.com/ticket/1298 I've had quite some code break using packer3 shrink option, watch

[jQuery] Problem with .text() ??

2007-07-04 Thread [EMAIL PROTECTED]
Live Example: http://rcs-comp.com/code_examples/text_function_bug/ I have some code that has a three column table in it. When the user updates some number values in one of the two columns, I have some JS that sums those columns and updates the value in the third column with that info. When

[jQuery] jQuery 1.2 functionality

2007-07-04 Thread Jon Ege Ronnenberg
Hi all! I like jQuery a lot and have used it in couple projects now. But one thing I really don't get is the slideUp and slideDown functions. Why can't I decide which way the animation goes?? I really think they (the functions) should be more generic. While browsing the road map for jQuery 1.2 I

[jQuery] Is it possible to show elements that is not CSS display:none;?

2007-07-04 Thread Jon Ege Ronnenberg
Hi all! Is it possible to show elements that is not CSS display:none;? In my case I'm showing some pictures and I don't like that the browser only downloads the pictures when I show them through jQuery. I would prefer if the browser downloaded all the pictures and then I would show them though

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread John Resig
Do you realize that you can do this now? There's already a .animate() function, you don't need any of the 1.2 functionality for that. SlideDown: .animate({ height: 'show' }); SlideUp: .animate({ height: 'hide }); SlideRight: .animate({ width: 'show' }); SlideLeft: .animate({ width: 'hide' });

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread Jon
Hmm.. Unless I'm wrong that still limits me to animate in the direction jQuery supports. Which is: SlideDown: .animate({ height: 'show' }); - reveals the element from top to bottom SlideUp: .animate({ height: 'hide }); - hides the element from bottom to top I want the opposite but I see no way of

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread Jon
Ext has this http://extjs.com/deploy/ext/docs/output/Ext.Fx.html which is pretty much all one can ask for. John, I know jQuery support Ext but I would like to use jQuery for my current project. Ext is just too big and I don't want to build a new Ext download every time the clients wants more

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread John Resig
In order to do an animation of that type, you'll have to do some dancing. You could just use the Interface library (jQuery plugin) which has this animation style built right into it. Check out the fx package: http://interface.eyecon.ro/docs/fx The reason why jQuery doesn't have this specific

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread Ganeshji Marwaha
http://interface.eyecon.ro/demos/ifx.html#slide-fx try slide out down and slide in down. -GTG On 7/4/07, Jon [EMAIL PROTECTED] wrote: Ext has this http://extjs.com/deploy/ext/docs/output/Ext.Fx.html which is pretty much all one can ask for. John, I know jQuery support Ext but I would like

[jQuery] Re: can't get hoverTable to work

2007-07-04 Thread Benjamin Sterling
Rick, I get this error: winLaunch is not defined, fix that and I think it will fix the hover. On 7/4/07, Rick Pasotto [EMAIL PROTECTED] wrote: Could someone look at http://monday6o.org/assign.php and tell me what I have wrong? There is a pause when the page loads so I know the script runs but

[jQuery] Re: Is it possible to show elements that is not CSS display:none;?

2007-07-04 Thread Jon
Hi Benjamin. I would like to put visibility: hidden in my css for the elements (it's thirty something divs with an image set as background) and then use jQuery to display them. But so far I haven't had any success with that approach - it only works if I set the css to display:none. By doing so

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread Jon
Thanks! That's just what I was looking for.. I haven't used Interface before but it looks promising. On 5 Jul., 03:07, Ganeshji Marwaha [EMAIL PROTECTED] wrote: http://interface.eyecon.ro/demos/ifx.html#slide-fx try slide out down and slide in down. -GTG On 7/4/07, Jon [EMAIL

[jQuery] How do I return false if no elements found using XPath?

2007-07-04 Thread [EMAIL PROTECTED]
I am trying to find a particular parentElement without knowing the ID. If not I need to find a different element. SO: var parentXpath = [EMAIL PROTECTED]@id=+obj.id+]/.. [EMAIL PROTECTED]; if (*noobjectfound*) { find new object } How can I do this?

[jQuery] How do I return false if no elements found using XPath?

2007-07-04 Thread [EMAIL PROTECTED]
var parentDiv = $([EMAIL PROTECTED]@id=+obj.id+]/.. [EMAIL PROTECTED]); if (!parentDiv) {

[jQuery] Re: How do I return false if no elements found using XPath?

2007-07-04 Thread John Resig
You have to check the length property, so do something like this: // No div matches the selector was found if ( !parentDiv.length ) { // Do something else } --John On 7/4/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: var parentDiv = $([EMAIL PROTECTED]@id=+obj.id+]/.. [EMAIL PROTECTED]);

[jQuery] Re: Is it possible to show elements that is not CSS display:none;?

2007-07-04 Thread Jon
What's better than asking, is testing.. div style=position:absolute;left:-2000px; img src=path to image/ /div Much better.. Sorry if you felt I've wasted your time. On 5 Jul., 03:25, Jon [EMAIL PROTECTED] wrote: Hi Benjamin. I would like to put visibility: hidden in my css for the elements

[jQuery] Re: Is it possible to show elements that is not CSS display:none;?

2007-07-04 Thread Benjamin Sterling
No, no time wasted. Glad that worked. On 7/4/07, Jon [EMAIL PROTECTED] wrote: What's better than asking, is testing.. div style=position:absolute;left:-2000px; img src=path to image/ /div Much better.. Sorry if you felt I've wasted your time. On 5 Jul., 03:25, Jon [EMAIL PROTECTED] wrote:

[jQuery] Re: $(#container element.class) possible, but what about everything except a class?

2007-07-04 Thread Glen Lipka
I expanded my demo page to show the different possibilities. http://www.commadot.com/jquery/selectors/ John/Gordon, your code doesn't seem to find the grandchildren. This one just was itching at my mind, but I think I found the perfect selector: $(#container *).not(.notme) //notice the * Im

[jQuery] Re: Release: Tooltip plugin 1.1

2007-07-04 Thread Glen Lipka
Nice work, this looks awesome. One quirk. On the last examples (bottom right), when I mouse over in FF, the tip goes offscreen. It doesnt happen every time. Strange behavior. Glen On 7/4/07, Jörn Zaefferer [EMAIL PROTECTED] wrote: This update to the jQuery Tooltip plugin brings a few minor

[jQuery] Re: Websnapr using jQuery

2007-07-04 Thread Rey Bango
Kia, I don't recall seeing a plugin that can do that but if Websnapr does the trick and there's no conflict with jQuery, then you should consider just using it. Was there something about Websnapr that didn't quite work? Rey... Kia Niskavaara wrote: A long shot. Is there a plugin that can

[jQuery] Re: jQuery 1.2 functionality

2007-07-04 Thread Ganeshji Marwaha
np, have fun since u said u were new, one more info is that... paul is creating a new plugin called jquery ui, which maybe a replacement for interface or a complement to interface... So, you might want to keep an eye out for that one,,, -GTG On 7/4/07, Jon [EMAIL PROTECTED] wrote:

  1   2   >