[jQuery] Re: jQuery 1.1.3.1

2007-07-04 Thread Ganeshji Marwaha
u guys work at an amazing speed.. can't wait to try it... Keep up the great work... -GTG On 7/4/07, John Resig <[EMAIL PROTECTED]> wrote: Hi Everyone - This is a quick bug fix release for jQuery 1.1.3. About six major issues popped up after the 1.1.3 release that we deemed important enough

[jQuery] Re: Websnapr using jQuery

2007-07-04 Thread [EMAIL PROTECTED]
Are you wanting to actually get a snapshot of a website or are you just wanting the bubbles so that you can put your own content in them? If the later, you might want to check this out: http://groups.google.com/group/jquery-en/browse_thread/thread/91bc1d17185a7b3f In his demo (http://jquery.bas

[jQuery] Re: Websnapr using jQuery

2007-07-04 Thread [EMAIL PROTECTED]
Are you wanting to actually get a snapshot of a website or are you just wanting the bubbles so that you can put your own content in them? If the later, you might want to check this out: http://groups.google.com/group/jquery-en/browse_thread/thread/91bc1d17185a7b3f In his demo (http://jquery.bas

[jQuery] jQuery 1.1.3.1

2007-07-04 Thread John Resig
Hi Everyone - This is a quick bug fix release for jQuery 1.1.3. About six major issues popped up after the 1.1.3 release that we deemed important enough to resolve immediately, with a follow-up release. The full list of resolved issues can be found here: http://dev.jquery.com/report/16 You can

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

2007-07-04 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: 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? I did the fol

[jQuery] Re: Release: Tooltip plugin 1.1

2007-07-04 Thread [EMAIL PROTECTED]
It seems to happen when you put the mouse somewhere between the 'ogle' on the third link. Also, the initial input tooltip caught me off guard. When you don't hover on the input element and just click in it like you normally would to type in it, then it gives a "flash" effect because the tooltip

[jQuery] Re: how to animate two divs' position smoothly at the same time

2007-07-04 Thread eddy
Thank you! But I can not open the URL,could you paste your code here? On 7月5日, 下午12时36分, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > I tried to make a demo.http://www.commadot.com/jquery/animate/ > > How come I get an infinite too much recursion error loop? > > Glen > > On 7/4/07, Ganeshji Marwaha

[jQuery] Re: how to animate two divs' position smoothly at the same time

2007-07-04 Thread Glen Lipka
I tried to make a demo. http://www.commadot.com/jquery/animate/ How come I get an infinite too much recursion error loop? Glen On 7/4/07, Ganeshji Marwaha <[EMAIL PROTECTED]> wrote: select both and animate... like this... $("#first, #second").animate(...); I believe john once said that, the

[jQuery] Re: how to animate two divs' position smoothly at the same time

2007-07-04 Thread Ganeshji Marwaha
select both and animate... like this... $("#first, #second").animate(...); I believe john once said that, the same timer is used for all the elements if specified this way... so, you might not have problems with smoothness.. -GTG On 7/4/07, eddy <[EMAIL PROTECTED]> wrote: There're two divs

[jQuery] how to animate two divs' position smoothly at the same time

2007-07-04 Thread eddy
There're two divs which have the same position, Is there a method to move them smoothly at the same time. below is not good: $('#first').animate({left:'50px',top:'100px'},1000); $('#second').animate({left:'50px',top:'100px'},1000);

[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: Than

[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 pu

[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: $("#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: 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.. 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 cs

[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.. 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 > (it's thirty something divs with an image set as background) and

[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] 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] 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] 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 <

[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 th

[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 bu

[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 l

[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 ef

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

2007-07-04 Thread Benjamin Sterling
Jon, I don't completely understand what you are asking for; Are you asking if there is a way to "preload" images and have them hidden with out display:none? If so: Are you asking for filter out elements with display:none? If so: $('*').filter(':hidden'); // I may be wrong on this one On

[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 featu

[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 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] 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 jQ

[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.

[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 upd

[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] 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] 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 it'

[jQuery] Setting Default Submit Button For Forms

2007-07-04 Thread [EMAIL PROTECTED]
Have you ever seen this done with an entire form, instead of just a single input element? I would like to be able to do something like: $ ('#my_form').defaultButton('#btn_submit').cancelButton('#btn_cancel'); I found a plugin on the JQuery list that did this for an input element, but not the wh

[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] 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

[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 I

[jQuery] Re: JQuery Taconite and IE7

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

[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 I have: $(document).ready(function() { $('table.ruler').tableHover({}

[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 ide

[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] 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] 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] Re: Basic Example not working

2007-07-04 Thread Shelane
You tried wrapping it in a ready function? $(function(){ $("a").click(function(){ alert("ahh"); return false; }); }); 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 > correct. I view the page

[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 th

[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 ad

[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 p

[jQuery] Basic Example not working

2007-07-04 Thread [EMAIL PROTECTED]
I have the following code in my file, the src for the jquery file is correct. I view the page in the browser and it just goes to the jQuery page, no alert box. Any idea why this is happening? $("a").click(function(){ alert("ahh"); return false; }); http://jque

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

2007-07-04 Thread Alexsandro_xpt
Exactly, I getting into standards(WC3) now. Uhm... now I understand. Thank you a lot for help me... :) bye. On 4 jul, 14:02, "Ganeshji Marwaha" <[EMAIL PROTECTED]> wrote: > Glad that you are getting into standards now. > > Again, i understand ur concern. You are saying that classes should b

[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] 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: http://dev.jquery.com/

[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: http://dev.jquery.com/

[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: http://dev.jquery.com/browser/trunk/plugins/m

[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 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 Zaeff

[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 IE

[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 b

[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: > >

[jQuery] Re: .change for created select menu

2007-07-04 Thread Ganeshji Marwaha
Glad that you got it working... When something in javascript or even CSS doesn't work as expected, i always follow the process of setting up a minimal test page. This ensures that all the effort that we put in fixing the problem reaches it. -GTG On 7/4/07, NBoringron <[EMAIL PROTECTED]> wrote:

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

2007-07-04 Thread Jean
Will be great if some people can translate for other languages to reach more an more people =D i can try help with portuguese =p On 7/4/07, R. Rajesh Jeba Anbiah <[EMAIL PROTECTED]> wrote: On Jul 4, 5:10 pm, "Armand Datema" <[EMAIL PROTECTED]> wrote: > no hijacking i was suggesting an article

[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() functi

[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 possible

[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 possible

[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 possible

[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 possible

[jQuery] Thickbox and AjaxSubmit() problem.... help please ;)

2007-07-04 Thread amircx
hey im trying to integrate thickbox with submit, im trying to do that once user is click on a button , its opens a thickbox with form, when user fill out the form its vaildate it (with jquery vaildiaton plugin) and then submit it to other page and check if everything is ok (server side php) ive

[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: src="prototype/prototype-1.5.1.1.js"> /**/ $j = jQuery.noCon

[jQuery] OT: iPhone Offical Docs

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 t

[jQuery] Re: Jquery 1.1.3 and Validation plugin problems

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! > > Excu

[jQuery] Jquery 1.1.3 and Validation plugin problems

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

[jQuery] Validation plugin and Version 1.1.3

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

[jQuery] Validation plugin and Version 1.1.3

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

[jQuery] Re: .change for created select menu

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. T

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

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 over

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

On Jul 4, 5:10 pm, "Armand Datema" <[EMAIL PROTECTED]> wrote: > no hijacking i was suggesting an article Oh, cool. Ok -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

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

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 ar

[jQuery] simple ahref toggle problem [beginner]

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: How to find elements with an exact text content?

> 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: $('someEle

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

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 jQue

[jQuery] accessing elements in frames

What am I doing wrong here? Shouldn't it possible to access elements in other frames, if the frame source is on the same server? This doesn't work: $(document).ready(function() { $('#f1 p').click(function(){ alert( 'click' ); }); }); content of frame.html: Hello!

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

Hello Renato, I also saw your answer on the french list... ;-) >> I'm currently using :contains() to find elements that contain >> some string: >> >> I would like now to find only elements that have a text content >> exactly equal

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

Ciao, try to see if the code in that page i made for some friends of mine works for your needs: http://www.modostudio.net/studio.html I don't have the time now to write the markup and the code for you, but that is a hint. If you apply a class that only shows ket's say 20px (height: 20px; overflow:

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

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 Hmm... Why hijacking thread? Start a new thr

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

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 Hmm... Why hijacking thread? Start a new thread. -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.blogspot.com/

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

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: opacity in IE6.0 not works with jquery-1.1.3

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 versio

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

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['@'], { "=~": "z.match(RegExp(m

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

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: > For more details please visit the jQuery blog entry here: > > http://jquery.com/blog/

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

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: Manipulating a stylesheet directly

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 = 'text/css

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

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 abov

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

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; // Cert

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

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: ANNOUNCE: Call for Articles for Visual jQuery Magazine

On Jun 30, 1:34 am, Rey Bango <[EMAIL PROTECTED]> wrote: > 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. -- Email: rrjanbiah-at-Y!comBlog: http://rajeshanbiah.

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

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 $("").css({filter:"alpha(opacity=50)"

[jQuery] Manipulating a stylesheet directly

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 different

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

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: wrote: 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 w

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

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 > > filter:

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

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

  1   2   >