[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread hcvitto
is there any helper:)..?

[jQuery] Re: ajaxStart don't work for ajax/load?

2008-12-23 Thread hcvitto
i'm still here :) ...?

[jQuery] Re: Browser Hangs while hiding 2K+ table rows

2008-12-23 Thread Gordon
I wrote a test page with 4 different methods for hiding the rows. !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.1//EN http://www.w3.org/ TR/xhtml11/DTD/xhtml11.dtd html xmlns=http://www.w3.org/1999/xhtml; head meta http-equiv=Content-Type content=text/html; charset=UTF-8 / titleUntitled

[jQuery] intro using fadeTo and setTimeout won't work

2008-12-23 Thread Althalos
I've been trying for a week and spent endless hours on a tiny little code, and I cannot take any more of it so please help... code nr 1. not working, but I think should: $(document).ready(function(){ $(#logo).css('opacity','0.01'); for (var i = 1; i0; i-=100) { setTimeout(function() {

[jQuery] [validate plugin] How to call a function before the validation start?

2008-12-23 Thread Giovanni Battista Lenoci
Hi, I'm using the validate plugin, I have a comment form where I want to leave the possibility to insert an anonymous comment, but I want to alert the user before the submit. Then, if I have this code, what I have to do, to add a confirm('Are you sure')? I'm looking for a method like

[jQuery] accordian, with selected item, mostly done....

2008-12-23 Thread billybrag
hi all, Im trying to produce a menu where if the list item has a class of selected it will remain open... the menu im using is ul class='menu' li class='selected' /store/Apparel/arsenal-football Arsenal ul

[jQuery] question

2008-12-23 Thread Dirceu Barquette
Hi, Has anybody a solution? showing a few jQuery methods : var Typeof = {}; for (v in $) { Typeof = typeof $[v]; $('divspan'+Typeof+' /spanspan '+v+' /span/div').appendTo('body'); } Is it possible showing parameters list for each method above? thank you!!! Dirceu Barquette

[jQuery] Change image to black and white on hover

2008-12-23 Thread Paul Collins
Hi all, I'd like to think this is possible with JQuery, but can't find a reference online. Basically, I have a bunch of coloured logos that have links wrapped around them. I would like to create a hover state using JQuery that makes the images turn black and white when you hover over them.

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Gordon
The only way to do that without a separate black and white image would be to use the filter CSS property, which is nonstandard and would only work in internet explorer. On Dec 23, 11:16 am, Paul Collins pauldcoll...@gmail.com wrote: Hi all, I'd like to think this is possible with JQuery, but

[jQuery] IE issue if using $(self.element[0]).html(object/object) rather than $(self.element[0]).innerHTML = object/object ;

2008-12-23 Thread rernens
I was having a nasty issue with IE trying to invoke swf method from javascript after inserting the movie in the DOM with $(self.element [0]).html(object id=movie01/object). It was working nicely in all browsers but IE where I would get a Object doesn't support this property or method

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Paul Collins
That's a shame, thanks for letting me know Gordon. Are there any other similar hover effects that could be achieved with JQuery? Cheers Paul 2008/12/23 Gordon gordon.mc...@ntlworld.com The only way to do that without a separate black and white image would be to use the filter CSS property,

[jQuery] jQuery unbind not working in greasemonkey ... simple test case included

2008-12-23 Thread Keith Bentrup
Hi all, Thanks for any help with this one. I've developed a very simple test case to demonstrate the behavior. First I created unbind.html (below) that includes jQuery, binds, then immediately unbinds all anchor tags to tmpfunc that would print 'hello world' on the firebug console. It works as

[jQuery] Re: Extract Dropdown Menu Items to Array?

2008-12-23 Thread ben.hollis
Try something like this: $('option', mySelect).map(function() { return $(this).text(); }).get(); That'll go over every option in your select, grab the text, and then use get() to get a normal array out of it. On Dec 22, 11:47 pm, Vik v...@mindspring.com wrote: Is there a way to extract

[jQuery] Re: question

2008-12-23 Thread MorningZ
Advice: more specific subject lines than the ultra vague and useless question will get you better and faster help On Dec 23, 6:10 am, Dirceu Barquette dirceu.barque...@gmail.com wrote: Hi, Has anybody a solution? showing a few jQuery methods : var Typeof = {}; for (v in $) {    

[jQuery] Re: two submits in the same form

2008-12-23 Thread Soledad Zubiri
Thanks Jörn! The link you send me was very helpfull for me. For solving my case I used: $ http://docs.jquery.com/Core/%24(#myinput).*rules*(add, { required: true, minlength: 2, messages: { required: Required input, minlength: jQuery.format(Please, at least {0} characters are necessary) }

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
Thanks. You are right! But, do you have any suggest? Thank you! Dirceu Barquette 2008/12/23 MorningZ morni...@gmail.com Advice: more specific subject lines than the ultra vague and useless question will get you better and faster help On Dec 23, 6:10 am, Dirceu Barquette

[jQuery] Re: question

2008-12-23 Thread Alexandre Plennevaux
did you try listing the arguments array within each detected function ? On Tue, Dec 23, 2008 at 1:18 PM, Dirceu Barquette dirceu.barque...@gmail.com wrote: Thanks. You are right! But, do you have any suggest? Thank you! Dirceu Barquette 2008/12/23 MorningZ morni...@gmail.com Advice:

[jQuery] Requesting a file in a parent directory with .ajax

2008-12-23 Thread Steve
Hi there! If the file I want to to load is in my web root and is called: loadme.php And my javascript with all my JQuery code is in: js/jquery.js If I call the following function in jquery.js, what's the correct path? $.ajax({ url: '../loadme.php', Will adding the ../ correctly refer it to

[jQuery] issue regarding superfish horizontal menu

2008-12-23 Thread Amit Negi
Hai Joel Please let us know one thing is that menu (ul item) are appearing smooth on internet exploer 7. But problem is that the (li item) is not showing smooth on internet explorer 7. li item edges is too sharp than Ul item. Please let us know how can i do it smooth. Thanks Best Regards

[jQuery] how to wrap an given part

2008-12-23 Thread j.schmid...@googlemail.com
hi guys ... my html is something like that h3head1/h3 pcontent content/p h3head2/h3 content content content Now i want to add divs to split this into containers. It should look like that div class=1 h3head1/h3 pcontent content/p /div div class=2 h3head2/h3 content content content /div What

[jQuery] Need documentation for error status strings in $.ajax:error

2008-12-23 Thread ben.hollis
Looking through the source, I see that the textStatus parameter of $.ajax's error callback can be one of the following values: * timeout - when your specified timeout is exceeded * error - http error, like 404 * notmodified - when requested resource was not modified since last

[jQuery] Toggle Animation?

2008-12-23 Thread Nathan
I'm relatively new to jquery, and i'm trying to find a way to toggle a simple animation? At the moment I have this, which moves a div 400px to the left upon clicking a link. Pretty straight forward. $(document).ready(function(){ $(.slide).click(function () {

[jQuery] Improvements to jQuery's Trac installation?

2008-12-23 Thread ben.hollis
Hey guys, I'm finding it really hard to use Trac to keep tabs on jQuery development and the bugs I've filed. There are just a couple of weird things about jQuery's instance of Trac that make things hard: * I don't get emailed when tickets are updated. Maybe this problem is limited to just me,

[jQuery] Sortable...flash object losing its state when dragged. See example

2008-12-23 Thread Chris Varenhorst
See example at http://jsbin.com/areko I'm using jQuery UI's sortable functionality. Try playing the youtube video, then click on the text DRAG to drag the elements around the youtube video, it continues to play fine. But if you attempt to drag the video itself, it will reload the flash, causing

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Nathan
It's not jQuery (although I believe it can act as a plugin - check the documentation), but this library covers that kind of image manipulation: http://www.pixastic.com/ On Dec 23, 9:16 pm, Paul Collins pauldcoll...@gmail.com wrote: Hi all, I'd like to think this is possible with JQuery, but

[jQuery] Re: hiding a div using html select (drop down)

2008-12-23 Thread ben.hollis
Try using change instead of click. -Ben On Dec 22, 8:44 pm, Louie Miranda lmira...@gmail.com wrote: I tried to hide the div id=divarea using the toggle() function below. javascript code script type=text/javascript $(document).ready(function() {         $(#dropdown).click(function() {

[jQuery] Re: Requesting a file in a parent directory with .ajax

2008-12-23 Thread MorningZ
Did you simply try it? as .. means go up one directory On Dec 23, 1:30 am, Steve realestatest...@gmail.com wrote: Hi there! If the file I want to to load is in my web root and is called: loadme.php And my javascript with all my JQuery code is in: js/jquery.js If I call the

[jQuery] Re: Toggle Animation?

2008-12-23 Thread Mike Alsup
I'm relatively new to jquery, and i'm trying to find a way to toggle a simple animation? At the moment I have this, which moves a div 400px to the left upon clicking a link. Pretty straight forward. $(document).ready(function(){    $(.slide).click(function () {                

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
How can I do this? This is my question! Thank you!!! Dirceu Barquette 2008/12/23 Alexandre Plennevaux aplennev...@gmail.com did you try listing the arguments array within each detected function ? On Tue, Dec 23, 2008 at 1:18 PM, Dirceu Barquette dirceu.barque...@gmail.com wrote: Thanks.

[jQuery] Re: Toggle Animation?

2008-12-23 Thread Nathan
Awesome. Thanks so much Mike. Looks nice and straight forward to me. On Dec 23, 10:42 pm, Mike Alsup mal...@gmail.com wrote: $(document).ready(function(){    $(.slide).toggle(                 function () {                         $(#slider).animate({marginLeft: -400px}, 1000,

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread Ca-Phun Ung
Sorry, yes this should be possible with the onSelect option. See: http://docs.jquery.com/UI/Datepicker/datepicker#options On Tue, Dec 23, 2008 at 3:47 PM, sabastian sabastiangron...@yahoo.comwrote: Please, can someone inform me if it is possible to have individual html links for each date in

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
could you please write an example for me and show me where it needs to go and in which file. On Dec 23, 12:56 pm, Ca-Phun Ung cap...@yelotofu.com wrote: Sorry, yes this should be possible with the onSelect option. See:http://docs.jquery.com/UI/Datepicker/datepicker#options On Tue, Dec 23,

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
Ok, on line 109 in uidatepicker.js I have onSelect: null. How can I change this? On Dec 23, 1:20 pm, sabastian sabastiangron...@yahoo.com wrote: could you please write an example for me and show me where it needs to go and in which file. On Dec 23, 12:56 pm, Ca-Phun Ung cap...@yelotofu.com

[jQuery] [TUTORIAL] How to Create a plugin for jQuery

2008-12-23 Thread AdrianMG
Hi guys I continue posting tutorials about jQuery, this time it's a little introduction with 2 examples to create jQuery plugins, I hope you find it useful! http://yensdesign.com/2008/12/how-to-create-a-plugin-for-jquery/

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread Ca-Phun Ung
You don't. onSelect is a callback. The documentation states: onSelect is a callback function when a date is selected. The function receives the date text and date picker instance as parameters. So in your code you could do something like this: $('#datepicker').datepicker({onSelect:

[jQuery] Re: How to Create a plugin for jQuery

2008-12-23 Thread MorningZ
I'll be honest, and please don't take this as anything but constructive criticism (which seemed to be a problem last tutorial you posted - Your sample plugin breaks the chain (which is the whole power of extending jQuery) - You don't mention closures - Nothing is gained by # // jQuery.fn

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
For instance $('#datepicker').datepicker({onSelect: function(datestr, inst) {GetUrl(this.value)option value=http://google.com;Get Google/option/select}}); where would this code go? Does it matter where in the ui.datepicker.js file it goes? On Dec 23, 2:13 pm, Ca-Phun Ung cap...@yelotofu.com

[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread Dave Methvin
Hi, which version of the plugin is this? Can you post a link to a demo page? The problem may be in the markup so it would help to see that.

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread Ca-Phun Ung
For instance $('#datepicker').datepicker({onSelect: function(datestr, inst) {GetUrl(this.value)option value=http://google.com;Get Google/option/select}}); This won't work. I'm not entirely sure what you're doing here. Could you post up a demo page? where would this code go? Does it

[jQuery] Re: IE issue if using $(self.element[0]).html(object/object) rather than $(self.element[0]).innerHTML = object/object ;

2008-12-23 Thread Dave Methvin
Thanks for posting your findings. I think it may be a result of this IE bug: http://dev.jquery.com/ticket/925

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am sorry for my incompetence. I am new to javascript. All I want to do is when a date is chosen in datepicker a person will be automatically linked to a webpage, I used google as an example. On Dec 23, 2:35 pm, Ca-Phun Ung cap...@yelotofu.com wrote: For instance  

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am sorry for my incompetence. I am new to javascript. All I want to do is when a date is chosen in datepicker a person will be automatically linked to a webpage, I used google as an example. On Dec 23, 2:35 pm, Ca-Phun Ung cap...@yelotofu.com wrote: For instance  

[jQuery] Re: [validate plugin] How to call a function before the validation start?

2008-12-23 Thread Jörn Zaefferer
The option you are looking for is called submitHandler. Details here: http://docs.jquery.com/Plugins/Validation/validate#toptions Jörn On Tue, Dec 23, 2008 at 11:43 AM, Giovanni Battista Lenoci gian...@gmail.com wrote: Hi, I'm using the validate plugin, I have a comment form where I want to

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am sorry for my incompetence. I am new to javascript. All I want to do is when a date is chosen in datepicker a person will be automatically linked to a webpage, I used google as an example. On Dec 23, 2:35 pm, Ca-Phun Ung cap...@yelotofu.com wrote: For instance  

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am sorry for my incompetence. I am new to javascript. All I want to do is when a date is chosen in datepicker a person will be automatically linked to a webpage, I used google as an example. On Dec 23, 2:35 pm, Ca-Phun Ung cap...@yelotofu.com wrote: For instance  

[jQuery] Re: Improvements to jQuery's Trac installation?

2008-12-23 Thread Dave Methvin
I know what you mean, Ben. I think the site is having load problems as well; I get a lot of timeout errors in the evening. One problem was that people are trying to grab their copies of jQuery directly from the jQuery site, rather than making their own copies or using the Google copy. Can you

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am trying to set up a tour/ day trip company. When people visit the website I would like them to be able to select a date for the tour and then check availability. Thus, when people select a calendar date I would like them to be redirected to another html page indicating availability. Ideally,

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
I am trying to set up a tour/ day trip company. When people visit the website I would like them to be able to select a date for the tour and then check availability. Thus, when people select a calendar date I would like them to be redirected to another html page indicating availability. Ideally,

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread Ca-Phun Ung
No problem. That's what we're here for - here to help where possible. Currently the datepicker only supports choosing a date and having the value written to an input textbox. Or choosing a date and using the onSelect to do something with the selected date. In your case I'm assuming you want

[jQuery] Re: Please help me to find my mistakes on below code

2008-12-23 Thread bookme
Hi, I have solve this issue by replacing ajaxStart by onclick event and ajaxStart by complete: ajax request but can not solve using ajaxStart and ajaxStop On Dec 22, 8:03 pm, bookme rarockthewo...@gmail.com wrote: Hi, I am trying to solve ajaxStart and ajaxStop issue from last 3 days but

[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread hcvitto
hi, thanks for the answer.. both the plugin and jquery versions are the latest ones. here i put the single page with the problem. Html and css are as little as i could do. Hope it is clear enough. http://www.tasker.it/demo/ VItto On 23 Dic, 15:24, Dave Methvin dave.meth...@gmail.com wrote:

[jQuery] Re: intro using fadeTo and setTimeout won't work

2008-12-23 Thread Dave Methvin
function changeFade(i) { $(#logo).fadeTo(fast,1-i/1); $(#percentage).html(i/100 + '%'); i += 100; if (i=1) setTimeout(changeFade(i),100); } $(document).ready(function(){ alert('test'); $(#logo).css('opacity','0.01'); changeFade(100); } You need to wait

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
No, what I needed is one link for one day. For instance a person selects a date, date 'x', they are then taken to a webpage dedicated to that day. We will manually update each webpage to indicate the availability of each trip. (365 webpages) If this is not possible I would settle for select

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
No, what I needed is one link for one day. For instance a person selects a date, date 'x', they are then taken to a webpage dedicated to that day. We will manually update each webpage to indicate the availability of each trip. (365 webpages) If this is not possible I would settle for select

[jQuery] JQuery Spell Checker plugin

2008-12-23 Thread Raghu
Hi, I am looking for JQuery spell checker plugin from brandon... I can below below link but there is no script and documentation available.. Any idea how to get this plugin. http://plugins.jquery.com/project/spellcheck Thanks Raghu

[jQuery] Querying XML with jQuery in IE6

2008-12-23 Thread Anonymous
Hi all. I'm trying to get some values from an XML document in jQuery but lack of a (good) debugger in IE6 means that I can't figure this out. The XML is simple: XML: Tests Test name=Help

[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread Dave Methvin
The page isn't loading properly, it almost seems like the stylesheet is missing.

[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread hcvitto
mmh..that's weird..i can see it right.. here's the screenshot as i see it http://www.tasker.it/demo/demo.jpg how do you see it? On 23 Dic, 16:40, Dave Methvin dave.meth...@gmail.com wrote: The page isn't loading properly, it almost seems like the stylesheet is missing.

[jQuery] Re: Extract Dropdown Menu Items to Array?

2008-12-23 Thread Vik
Very cool. Thanks very much, Ben. On Dec 23, 12:35 am, ben.hollis ben.hol...@gmail.com wrote: Try something like this: $('option', mySelect).map(function() {     return $(this).text(); }).get(); That'll go over every option in your select, grab the text, and then use get() to get a

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Paul Collins
That works perfectly with JQuery Nathan. Thanks for your help. Much appreciated. Paul 2008/12/23 Nathan i...@nathan-adams.net It's not jQuery (although I believe it can act as a plugin - check the documentation), but this library covers that kind of image manipulation:

[jQuery] Re: corner plugin ie7 bug

2008-12-23 Thread Mike Alsup
mmh..that's weird..i can see it right.. All of the scripts and stylesheets on that page return 403 Forbidden.

[jQuery] Re: JQuery Spell Checker plugin

2008-12-23 Thread MorningZ
Any idea how to get this plugin - Load up Firefox and Firebug (which you should have as a JavaScript developer) - Pull up the page you link to above - in the Net tab on Firebug, go to the jquery.spell.check.js line - Right click the Response tab and choose Copy Response Body The contents of the

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Paul Collins
Hi all, I'm a little stuck and I can't seem to get exactly what I'm after googling Basically, I want to apply the pixastic - desaturate function when I hover over an image. I've got this working, but I want to be able to remove that effect when I mouseout of the image. I can't for the life

[jQuery] Re: JQuery Spell Checker plugin

2008-12-23 Thread Alexandre Plennevaux
even simpler: right-click view source. http://brandonaaron.net/jquery/plugins/spellcheck/jquery.spellcheck.js On Tue, Dec 23, 2008 at 5:12 PM, MorningZ morni...@gmail.com wrote: Any idea how to get this plugin - Load up Firefox and Firebug (which you should have as a JavaScript

[jQuery] Re: [validate plugin] How to call a function before the validation start?

2008-12-23 Thread Rick Faircloth
Hi, Giovanni... I don't have an answer to your specific question, but I do have a question for you, if you don't mind. I've been trying to use Jorn's Validate plug-in, as well, and trying to get it to validate onblur or onfocusout. Have you been able to accomplish this? Rick -Original

[jQuery] I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread K-BL
Hey Guys, I just finished writing a YUI Multi-File Compression Utility. It's really simple, it just runs some CLI commands, but more importantly, it compiles entire directories and sub directories with a clean UI. For us IT guys, it makes quick site changes a breeze from source to compressed in

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread Alexandre Plennevaux
it sounds very interesting, but i'm quite puzzled on how to do it correctly. i'm interested in reducing the load time of my websites but i don't really master these compression logics. I would have assumed i'd have to point to the html file loading the js+css files but your app seems to look for

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread Joe
Very interesting. We added the Java .jar file to our build process so it keeps our code in source control legible and the code pushed to prod compressed. YUI compressor, IMO, is the best and most consistent. Joe http://www.subprint.com On Dec 23, 11:03 am, Alexandre Plennevaux

[jQuery] Re: Serial Scroll, animated images look jagged

2008-12-23 Thread jen
Bump. I've tried researching this, and the only thing I found is an old issue about left to right being switched to right to left and therefore something in parallel needs to scale then scroll... but I can't find anything in the code that does this. Does anyone have any ideas on why the images

[jQuery] Re: question

2008-12-23 Thread Michael Geary
So you have a list of the methods of an object and you want to find out what the parameters to each method are, is that right? There are three ways you can do this: 1) In Firefox, you can call the .toSource() method of an object (including a function) to see its source code. For example, try

[jQuery] Re: hiding a div using html select (drop down)

2008-12-23 Thread Ricardo Tomasi
It's doing exactly what your code asks it to do, which is to toggle the visibility of #divarea every time you click the dropdown. What you want is $('#dropdown').change(function(){ $('#divarea')[ ($(this).val() == 'double') ? 'hide' : 'show' ]() }); equivalent to

[jQuery] Re: [validate plugin] How to call a function before the validation start?

2008-12-23 Thread Rick Faircloth
Thanks, Jorn... I'll check it out. Rick -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On Behalf Of Jörn Zaefferer Sent: Tuesday, December 23, 2008 9:42 AM To: jquery-en@googlegroups.com Subject: [jQuery] Re: [validate plugin] How to call

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread K-BL
My utility is used for manual compression, this would ensure best results from your server. YUI Compressor (and some other compression engines) take unnecessary characters out of your code (line breaks, spaces, comments), optimizes private functions/variables, and returns a non-encoded, single

[jQuery] Re: Sortable...flash object losing its state when dragged. See example

2008-12-23 Thread Ricardo Tomasi
Hmm. I think you can't do that kind of 'sorting' with elements if you don't want the content reloaded. Everytime you change an element's position in the DOM it's actually being removed and inserted again, not moved. You'll need to use the simple drag functionality, and figure out a way of

[jQuery] [Validate Plug-in] Jorn, et al... how do I made this validate onblur?

2008-12-23 Thread Rick Faircloth
Hi, Jorn, et al... How can I adjust this plug-in code to validate only on blur? Thanks, Rick script type=text/javascript $(document).ready(function() { $('#add-rental-property-form').validate({ errorPlacement: function(error, element) {

[jQuery] Re: Dynamic form validation on different names possible?

2008-12-23 Thread dfiguero
It seems as if the rules object is never being passed to validate(). From what I can see there are no rules when normalizeRules is being called however the elements are being called correctly. Would I need to call the compare function in a different form? I can't see much difference on the way I

[jQuery] Re: Dynamic form validation on different names possible?

2008-12-23 Thread Jörn Zaefferer
Replace this: $(.tableform).validate({debug: true, options: rules}); with this: $(.tableform).validate({debug: true, rules: rules}); Jörn On Fri, Dec 19, 2008 at 4:00 PM, dfiguero dfigu...@gmail.com wrote: So far I got: $(function(){ $.validator.addMethod(compare, function(value, element,

[jQuery] Select all even row in table that are not with a specified class.

2008-12-23 Thread m.ugues
Hallo all. I got a table like this table class=font_quotazioni thead tr th title=Data Contabile class=chars4Nome/th /tr /thead tbody tr class=midlight tdfoo/td /tr tr tdfoo/td /tr tr tdfoo/td /tr

[jQuery] Re: cycle plugin ovelapping in IE6/IE7

2008-12-23 Thread cym
malsup wrote: Give the menus a higher z-index. Dear Marc I follow your advice, and gave the div a high z-index but it didnt work. I have been obliged to call the menu div, after calling the cycle slideshow. Now it's fine (just not logical in terrm of html code ;-) ) Thank you for the

[jQuery] Re: Change image to black and white on hover

2008-12-23 Thread Ricardo Tomasi
When you apply the effect the img is replaced by a canvas tag (on browsers other than IE). To 'reset' it you need to reappend the original image, and for the events you need a parent element otherwise you'll lose them: div id=test img src=test.jpg alt= / /div var img = $(#test img);

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread Ca-Phun Ung
Well then my original suggestion should work. e.g. $('#datepicker').datepicker({ dateFormat: 'yy-mm-dd', onSelect: function(datestr, inst){ window.open(datestr + '.html'); } }); The above assumes you name the individual pages like yy-mm-dd.html, e.g. today would be 08-12-23.html.

[jQuery] Re: XML data consumption issue with Internet Explorer

2008-12-23 Thread jrm213
I am running into the same issue, anything inside the curly braces in this scenario does not work in internet explorer. $('data',xml).each(function(i) { } anyone know why this is or have a work around? Oki wrote: Hello, I'm new to jQuery and I've been playing around with an example I found

[jQuery] $.post not working with object arrays

2008-12-23 Thread drimsun
Hello, Whenever I try to pass an object containing array data through jQuery AJAX only the last value of the array is sent. Consider this example: var test = new Object(); test.arr = new Array(1, 2, 3); $.post(script.php, test, callback); If I print_r($_POST) in the script.php all I get is:

[jQuery] append can not with form submit for IE

2008-12-23 Thread Ken Phan
hi all ! i usage jquery appent 2 radio group to form. It work when submit in FF but does't work in IE. My code function checklistPanel (type, id,url){ var memory = false; var str = new String(); var newId = id.substr(1)+'-new'; var newIdo = id+'-new'; var

[jQuery] Re: how to wrap an given part

2008-12-23 Thread Ricardo Tomasi
You can't insert 'pieces' of HTML, you need the complete elements, as when they are inserted the browser automatically fixes your markup and adds the missing closing/opening tags. To avoid that you must concatenate everything into a string, and then append the whole string at once - that's also

[jQuery] Re: question

2008-12-23 Thread Dirceu Barquette
(before reading... my English is so terrible... :-( ) Hi Mike, Thanks for your attention and thank you very much for the answers! My goal is a CMS application. I've been writing this code from 2 month ago. Now a day I'm ending the project. So, I need to make something like dummy end user

[jQuery] Re: SimpleModal container size problem

2008-12-23 Thread Eric Martin
That is strange - can you get the latest version (1.2.2) and upload the full version, so I can trace it through? On Dec 22, 11:23 pm, Isaac isaactaw...@gmail.com wrote: I have a script that dynamically detects the size (using outerwidth and outerheight) of a div tag that I use as my modal

[jQuery] Re: Can datepicker do individual linking?

2008-12-23 Thread sabastian
Thank you, for your time and support. I have a couple of final questions and I should be finished. 1. In Dreamweaver, 'datepicker' appears as several files 'jquery-1.2.6.js', 'ui.datepicker.js', where do I save this new script? and do I give it the extension .js? 2. and for the script I

[jQuery] Re: Serious bug in JQuery

2008-12-23 Thread kayode81un...@gmail.com
I figured it out. I was using the validation framework and erroneously tried to add validation rules to a span instead of an input. Stepping through the code, I saw that it was asking for the element.form, and the spans don't have that property defined. Thanks On Dec 22, 6:33 pm, donb

[jQuery] Re: cycle plugin ovelapping in IE6/IE7

2008-12-23 Thread Txema
I have de same problem, in my case, we have element where the style tag position is relative, and then de z-index is invalid On 23 dic, 12:08, cym cy...@cym.fr wrote: malsup wrote: Give the menus a higher z-index. Dear Marc I follow your advice, and gave the div a high z-index but it

[jQuery] Re: intro using fadeTo and setTimeout won't work

2008-12-23 Thread Althalos
It works like a charm! Thanks a lot! =) On 23 Dec, 16:24, Dave Methvin dave.meth...@gmail.com wrote: function changeFade(i) {   $(#logo).fadeTo(fast,1-i/1);   $(#percentage).html(i/100 + '%');   i += 100;   if (i=1)     setTimeout(changeFade(i),100); }

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread Alexandre Plennevaux
ok , i tried it out and i can see it spits out my js files completely minified. Nice... really nice. how about going to the next automation process: what if i could point your app to my index.html, which contains a dozen LINK to css files and SCRIPT to js files. Could it compile all of the CSS

[jQuery] IE7 event problem

2008-12-23 Thread CS
I have a drawer that I want to pop open whenever you an anchor with a certain class assigned to it is clicked. If you look at this page in Safari, Firefox, or Chrome you can see the desired result The links in question are: 1. The first Click here in the bulleted list.

[jQuery] Re: I wrote a YUI Multi FIle Compression Utility

2008-12-23 Thread K-BL
I've actually built, almost, such a beast. Myn configures which css/ js files are needed for any given page, but I'm getting ready to release one that does exactly what you said, it's C#/asp.net 3.5 though. Email me with a proposal, feature list, and language needed, axel...@aim.com, we'll talk

[jQuery] Re: IE7 event problem

2008-12-23 Thread CS
I just read my message and it's not as clear as can be. Sorry I'm in some what of a hurry.

[jQuery] Re: Select all even row in table that are not with a specified class.

2008-12-23 Thread aquaone
Sure. $(table.font_quotazioni tr:even:not('.midlight'))... http://docs.jquery.com/Selectors/not#selector stephen On Tue, Dec 23, 2008 at 10:01, m.ugues m.ug...@gmail.com wrote: Hallo all. I got a table like this table class=font_quotazioni thead tr th title=Data

[jQuery] CSS problem on IE6?

2008-12-23 Thread Nguyễn Quốc Vinh
Yes, i know this is jQuery group! But i'm on working and i really need help from someone:(! This is an Joomla site which display in IE7,FF! But it is wrong in IE6! I don't understand why! It's so trange! This is test site http://www.bluesilverdesign.com/brown-stone/ View it with Ie6 and you will

[jQuery] validate plugin date()

2008-12-23 Thread Luke Adamis
hello all, I have a date filed that needs to be validated only for one type of date format: mm/dd/yyy. http://bassistance.de/jquery-plugins/jquery-plugin-validation/ the validate plugin's date() method validates all sorts of date formats. is there a way to restrict that to only one format? do

[jQuery] superfish dumb question

2008-12-23 Thread j
Hi, I am using Superfish in Joomla and think that it is great! I have set up my main navigation bar using a horizontal Superfish menu.I am having one problem. I can't figure out how to change the a:link color for any ul levels. I changed the background to match my template, but don't want my

[jQuery] working in FF but not in IE

2008-12-23 Thread Althalos
So I got help to create a script this far: $(document).ready(function(){ var step = 4000; (function(){ step -= 40; $(#percentage).text(Math.round((1-step/4000)*100) + '%'); if ( step 0 ) $(#logo).fadeTo(40,1-step/4000, arguments.callee); })();

  1   2   >