[jQuery] Re: display:none not working in IE

2008-12-23 Thread ben.hollis
That should work, but try $(this).hide() instead. It does the same thing. On Dec 23, 10:29 pm, Debby wrote: > Hi, > > css({'display':'none'}) is not working in IE. > I am trying this in loop, for perticular condition i need to display > none for this case, > so i tried with this > $(this).css({'

[jQuery] Re: Validate Plugin: Alpha Only

2008-12-23 Thread jsrobinson
Jörn: your replies are always timely and helpful. Worked like a charm the first go! deronsizemore: thank you for the example code, I see how to build custom rules now (not that I couldn't have gone through Jörn's documenation and eventually figured it out :) Cheers! Jason On Dec 23, 4:22 pm, "J

[jQuery] Re: Is this code legitimate?

2008-12-23 Thread Erik Beeson
Using an attribute selector to select by class isn't ideal. Maybe try: $(':input.required') --Erik On Tue, Dec 23, 2008 at 5:52 PM, Rick Faircloth wrote: > > Is this legit? > > $(':input[class$="required"]') > > I know it'll work for a div: > > $('div[class$="required"]') > > but it doesn't see

[jQuery] display:none not working in IE

2008-12-23 Thread Debby
Hi, css({'display':'none'}) is not working in IE. I am trying this in loop, for perticular condition i need to display none for this case, so i tried with this $(this).css({'display':'none'}); but its working fine Mozilla but not in IE Please do needful.

[jQuery] Re: Is this code legitimate?

2008-12-23 Thread Ricardo Tomasi
Works for me, what does your HTML look like? $(':input[class$=required]') In some situations you have to use 'className' instead of 'class' for the attribute selector, but I can't remember when. - ricardo On Dec 23, 11:52 pm, "Rick Faircloth" wrote: > Is this legit? > > $(':input[class$="req

[jQuery] Re: working in FF but not in IE

2008-12-23 Thread Ricardo Tomasi
oh god is that a flash-like intro movie with JS? three words of advice: 1. don't do it! 2. don't do it! 3. use flash for flashy! Anyway, that's a lot of overhead, you can simply fade the element and update the percentage regularly: $(document).ready(function(){ var per = $('#percentage'),

[jQuery] ajaxifying the whole site

2008-12-23 Thread mark
hi a lot of sites are ajaxifying the complete site for example facebook.com, orkut.com with their url structure being #new_request.php?... can i use jquery to do something like this?

[jQuery] Re: Validate Plugin: Alpha Only

2008-12-23 Thread deronsizemore
If you're new to jQuery (like me) this solution may not be totally obvious to you. I posted the same question and received responses pointing me in the right direction for the code to use, but I wasn't sure what to do with that code once I found it. So, here's my jQuery validation code for usin

[jQuery] [validate] jQuery validate but only when no "value" parameter set

2008-12-23 Thread deronsizemore
I'm working on a site and using jQuery Validate on the forms. Everything works great when there is no "value" parameter set on the form input. For my CMS, I can specify variables which remembers a users information on comment forms. You can see them below where I have value="{name}" on the name i

[jQuery] [validate] Requiring values on optional fields

2008-12-23 Thread Jason
I've got a user contact information form, which has among other fields an e-mail address field. The e-mail address field has a "test" function that allows the user to send a test e-mail message to confirm that the e-mail address is indeed correct. However, the e-mail address isn't required in orde

[jQuery] jCarousel inside a Thickbox fails in Chrome and Safari, ok in FF and IE

2008-12-23 Thread Dan Pouliot
Has anyone had good success getting jCarousel to work *inside* a thickbox? I've gotten it to work in Firefox 2 and 3 and IE 6 and 7, but not Safari or Chrome. Any ideas? If not, I think I'll try a different carousel implementation. Any thoughts much appreciated!

[jQuery] Programmaticly close sticky cluetip

2008-12-23 Thread bowang1123
Hello All, I know sticky cluetip can be closed by setting mouseOutClose:true or clicking the close link. Is there a way to programmaticly close it? Thanks! Bo

[jQuery] $().fadeIn using a png in IE7 , it's ugly.

2008-12-23 Thread mumbojumbo
I'm trying to fade an image using .fadeIn , The code works but the implementation in IE7 is ugly. Any work arounds/ fixes? I'm using jQ 1.2.6 and it works fine in FF... I've also tried to use it on an and a with the background image as the png. Still no luck. Any help would be appreciated! Mum

[jQuery] Re: CSS problem on IE6?

2008-12-23 Thread donb
And the left/right padding of the 'a' probably adds up to more than the container div's width (the standard 'box model' bug IE suffers from). On Dec 23, 10:17 pm, donb wrote: > 'ul.menu-top li a' is 'display: block' but you assign no width, so > they become 100% of the container's width. > > On

[jQuery] Re: CSS problem on IE6?

2008-12-23 Thread donb
'ul.menu-top li a' is 'display: block' but you assign no width, so they become 100% of the container's width. On Dec 23, 4:31 pm, "Nguyễn Quốc Vinh" wrote: > 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 IE

[jQuery] Is this code legitimate?

2008-12-23 Thread Rick Faircloth
Is this legit? $(':input[class$="required"]') I know it'll work for a div: $('div[class$="required"]') but it doesn't seem to work to designate an input with a class that has "required" on the end of it's name... Rick

[jQuery] Re: validate plugin date()

2008-12-23 Thread Dave Methvin
> I have a date filed that needs to be validated only for   > one type of date format: mm/dd/yyy. > is there a way to restrict that to only one format? This should work for validating USA-style mm/dd/ dates. $.validator.addMethod("usadate", function(value, element){ // Start with basic ma

[jQuery] Re: IE 7 not displaying expandable icon

2008-12-23 Thread Ashish
Fixed by adding position:relative in css plugin author already had zoom: 1 as IE hack. zoom:1 by itself was not sufficient . added position:relative to it and worked perfectly. Thanks to two amazing software - Jquery and Google On Dec 23, 3:12 pm, Ashish wrote: > I am using treetable plugin..

[jQuery] Re: validate plugin date()

2008-12-23 Thread Jörn Zaefferer
The included date methods are barely useful. Depending on your needs, you're probably better off writing your own methods. You could use the datejs.com library for the date parsing stuff. Jörn On Tue, Dec 23, 2008 at 10:37 PM, Luke Adamis wrote: > > hello all, > I have a date filed that needs to

[jQuery] Re: Validate Plugin: Alpha Only

2008-12-23 Thread Jörn Zaefferer
There are a few additional methods here: http://jquery.bassistance.de/validate/additional-methods.js (also included in the download) I guess you're looking for the lettersonly method. Jörn On Wed, Dec 24, 2008 at 12:59 AM, jsrobinson wrote: > > I need to validate a field to only accept A-Z,a-z

[jQuery] Validate Plugin: Alpha Only

2008-12-23 Thread jsrobinson
I need to validate a field to only accept A-Z,a-z I don't see a built in rule for this. How would I go about adding my own rule? Any help is much appreciated!

[jQuery] IE 7 not displaying expandable icon

2008-12-23 Thread Ashish
I am using treetable plugin...http://plugins.jquery.com/project/ treetable Please see following http://www.woodranchit.com/casetree/ On IE the expandable icon is no showing. I guess it to be issue with margin-left: -19px; padding-left: 19px; in IE7. On FF and Safari it works fine. Please he

[jQuery] Re: CSS problem on IE6?

2008-12-23 Thread Diane Nardozzi
Take the height off the anchor style... ul.menu-top li a { /*height: 30px;*/ > > 2008/12/23 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 u

[jQuery] Re: CSS problem on IE6?

2008-12-23 Thread Diane Nardozzi
This is a good article - Top reasons your CSS columns are messed up http://warpspire.com/tipsresources/web-production/css-column-tricks/ It's all about the math, make sure there is nothing in your left (243px) or right (648px) column that exceeds the width that you're setting. IE7 and FF will all

[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); })(); setTimeou

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

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

[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 wrote: > > Hallo all. > I got a table like this > > > > > Nome > > > > > foo > > >

[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: 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] 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. class="open_drawer_que

[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] 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 wrote: > > function changeFade(i) > > { > >   $("#logo").fadeTo("fast",1-i/1); > >   $("#percentage").html(i/100 + '%'); > >   i += 100; > >   if (i<=1) > >     setTimeout(changeFade(i),100); > > } > > $(document).rea

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

[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 instead of an . 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 wrote: > I would

[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: 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 wrote: > I have a script that dynamically detects the size (using outerwidth > and outerheight) of a tag that I use as my modal window.  It > works on all

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

[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] 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'; va

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

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

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

2008-12-23 Thread Ricardo Tomasi
When you apply the effect the is replaced by a 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: var img = $("#test img"); //save the image for later $('#test').hover(fu

[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] 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 Nome foo foo foo In my document.ready I set a class on even rows $("table.font_quotazioni tr:even").addClass("even"); I would like to exclude all th

[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 wrote: > > So far I got: > > $(function(){ > $.validator.addMethod("compare", function(value, element, param){

[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] [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 $(document).ready(function() { $('#add-rental-property-form').validate({ errorPlacement: function(error, element) { error.appendTo('#'+element.att

[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 'sorti

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

[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

[jQuery] Re: hiding a 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 $('#dropdown').change(funct

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

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

[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" wrote: > i

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

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

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

[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 wrote: > > "Any idea how to get this plugin" > > - Load up Firefox and Firebug (which you should have as a JavaScript > developer) > - Pul

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

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

[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" 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 normal array o

[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 wrote: > The page isn't loading properly, it almost seems like the stylesheet > is missing.

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

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

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

[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); > }

[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 wrote: > Hi, which version of th

[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 wrote: > Hi, > > I am trying to solve ajaxStart and ajaxStop issue from last 3 days but > can not solve...can som

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

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

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

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

[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" wrote: > > For instance  $('#datepicker').datepicker({onSelect: funct

[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" wrote: > > For instance  $('#datepicker').datepicker({onSelect: funct

[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 wrote: > > Hi, I'm using the validate plugin, I have a comment form where I want to > leave the poss

[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" wrote: > > For instance  $('#datepicker').datepicker({onSelect: funct

[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" wrote: > > For instance  $('#datepicker').datepicker({onSelect: funct

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

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 Ca-Phun Ung
> > For instance $('#datepicker').datepicker({onSelect: function(datestr, > inst) {"GetUrl(this.value)">http://google.com";>Get > Google}}); > 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 matter where in the

[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 sabastian
For instance $('#datepicker').datepicker({onSelect: function(datestr, inst) {"GetUrl(this.value)">http://google.com";>Get Google}}); 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" wrote: > You don't. onSelect is a callback

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

[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: function(da

[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 sabastian
Ok, on line 109 in uidatepicker.js I have onSelect: null. How can I change this? On Dec 23, 1:20 pm, sabastian 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" wrote: > > > Sorry, yes this should be p

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

[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 wrote: > > Please, can someone inform me if it is possible to have individual > html links for each date in datepicker. > > On Dec 2

[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 wrote: > $(document).ready(function(){ >    $(".slide").toggle( >                 function () { >                         $("#slider").animate({marginLeft: "-400px"}, 1000, > "easeInOutQuad")

[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 > > did you try listing the arguments array within each detected function ? > > On Tue, Dec 23, 2008 at 1:18 PM, Dirceu Barquette > wrote: > > Thanks. > > You are right! > > But, do you have

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

[jQuery] Re: hiding a 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" wrote: > I tried to hide the using the toggle() function below. > > javascript code > > > > > $(document).ready(function() { > > >         $("#dropdown").click(function() { > >         $("#divarea").toggle(); > >

[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, causin

  1   2   >