[jQuery] looking for plugin that presets values in text box

2008-01-05 Thread Bhaarat Sharma
Hi, some time ago I saw a jquery plugin which would preset the value in a text box and when users' cursor came to that text box...the preset value would go away. it was sort of there to let the user know what format should be in this text field. I cant recall the name of the plugin. Wondering i

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-05 Thread Stosh
Ariel, Thanks! :) Pax, - Stan On Jan 4, 10:29 am, Ariel Flesler <[EMAIL PROTECTED]> wrote: > @Stosh >    Sure! actually, all the releases till this one, I uploaded as ZIP, > I chose RAR this time because it was a few KB smaller, that's all. > You can get the ZIP from > here:http://www.freewebs.

[jQuery] Re: Issue with jQuery zebra tables tutorial...

2008-01-05 Thread Karl Swedberg
So, it looks like the problem you're having is that the style for the "over" class is not overriding the "alt" class. The simple solution would be to give a higher specificity to the "over" class's CSS rule. Something like this, perhaps, in your stylesheet: .alt { background-color: #ccc;

[jQuery] Re: :last-child problem

2008-01-05 Thread Karl Swedberg
Hi Tomek, It works fine for me. How are you testing this? If you have Firefox with Firebug, inspect the last-child element after adding the class. When I did so, I saw this: bar (I had added "bar" to the HTML for the sake of my test.) --Karl _ Karl Swedberg www.englishru

[jQuery] Re: Is there a problem with JQuery Form Plugin and v1.2.1 ?

2008-01-05 Thread Karl Swedberg
Hi Quinode, I don't know of any problems with the jQuery Form plugin and v1.2.1. I've used the two together on a number of projects with no issues. The problem could be in the code you're using in conjunction with the Form plugin, such as validation code in beforeSubmit or some other cod

[jQuery] Re: jQuery Tabs - Can I Do This?

2008-01-05 Thread Matt Quackenbush
Klaus, thank you very much for your input and thoughts on the topic, as well as the link. Interesting reading, indeed. I shall most definitely give more thought to the task at hand. Stephen, thanks also for the potential solution. I sincerely appreciate it. jQuery is awesome, and this list is

[jQuery] bug?: clone(true) does not work or messes up

2008-01-05 Thread Alexandre Plennevaux
i may have found a possible bug with clone(true/false). according to the doc, clone() can be fed with a boolean parameter that specifies whether behaviors should be cloned too. no matter how i tried, it fails, as you can see it here: http://www.pixeline.be/youplaboum/ui.html (fill the field "nom

[jQuery] Re: Binding a function to dynamically generated markup does not work

2008-01-05 Thread Ariel Flesler
That was wrongly said. Replace "is because of Event Delegation" for "is because of event bubbling, what you did was using event delegation". Ariel Flesler On 5 ene, 20:52, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Checkhttp://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st... > >

[jQuery] Re: Binding a function to dynamically generated markup does not work

2008-01-05 Thread Ariel Flesler
Check http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_stop_working_after_an_Ajax_request.3F You can also do (suppose this is the way you generate the elements): $('...').change(function() {}).appendTo('#id_of_div'); The reason why binding to the div did work, is because of E

[jQuery] Re: jQuery Tabs - Can I Do This?

2008-01-05 Thread Klaus Hartl
On 5 Jan., 23:35, "Matt Quackenbush" <[EMAIL PROTECTED]> wrote: > I'm using the Tabs plugin, and have a question. > > >     My First Tab >     My Second Tab >     http://www.someothersite.com/";>My Third > Tab > > >     // my content > > >    // my other content > > > Is it possible to get t

[jQuery] Re: jQuery Tabs - Can I Do This?

2008-01-05 Thread [EMAIL PROTECTED]
Gday Matt, Not sure if there is a way to ignore the TABS functions, but what about just placing an onclick event. Either directly on the link, or bind it via jQuery onload. Just add a class as a hook, like... http://www.someothersite.com/"; rel="http:// www.someothersite.com/" class="offsite" >

[jQuery] Re: Not recognizing multiple classes

2008-01-05 Thread Kyle
var whichClass = $(this).attr("class"); $("p").each(function(){ if($(this).is("."+whichClass)){ $(this).show(); } else{$(t

[jQuery] jQuery Tabs - Can I Do This?

2008-01-05 Thread Matt Quackenbush
I'm using the Tabs plugin, and have a question. My First Tab My Second Tab http://www.someothersite.com/";>My Third Tab // my content // my other content Is it possible to get that third tab to actually go to the off-site URL when clicked? I tried this, but the link was

[jQuery] Not recognizing multiple classes

2008-01-05 Thread Kyle
I'm trying to hide all items tagged with a specific class upon clicking on a span with a similar tag. $("#tags span").click(function(){ var whichClass = $(this).attr("class"); //hide all the p's that do not match the class clicked $(

[jQuery] Re: jquery validation demo errors

2008-01-05 Thread Jack Killpatrick
OK, thanks for the info. Any idea around when 1.2 will be released? - Jack Gonzo wrote: Thanks for catching that problem. There was a problem when the metadata plugin switched from $.meta to $.metadata (see http://tinyurl.com/yv8mw5). These demo files must've been missed for the release of v1

[jQuery] Re: Binding a function to dynamically generated markup does not work

2008-01-05 Thread jason
You can use .find() to "find" the dynamically generated elements within the nearest static parent, i.e.: $('#id_of_div').find('select').change(...); Or, you can use the Live Query plugin to create your bindings if you know the target is dynamically generated: http://plugins.jquery.com/project/l

[jQuery] Re: Eval error with Firefox 3

2008-01-05 Thread Garrett
I'm also having this error come up on my website when using jQuery. Any more info regarding this fix? On Dec 1 2007, 2:13 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Can somebody describre why using eval.call(window, data);  instead of > eval(data, window); > > On Nov 23, 4:58 pm, Cloudr

[jQuery] Re: Serialize unchecked checkboxes?

2008-01-05 Thread badtant
Wizzud: Thanks! I'll try out the code when I come to work on monday =) Mike: I know it's not supposed to but it used to do that and I have a case where I want that functionality. Therefore i think it was a good thing! The best would be with an option for the user but the standard would be to only

[jQuery] Issue with jQuery zebra tables tutorial...

2008-01-05 Thread bryce4president
I've just started working with jQuery today. One of the things I've been doing is using zebratables, but it has been with a javascript function I found that runs off the window.onload. I like the idea of doing this in jQuery as it is definitely faster (i tested it) and it is a lot cleaner and si

[jQuery] Re: jQuery.ScrollTo 1.3 released

2008-01-05 Thread rics
Great job!!! It works fine on Linux, usign Firefox 2.0.010. rics On Jan 3, 6:08 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > There, now it shows an example of code when a link is clicked. > I'd appreciate it, if some people could try it on different browser > versions and platforms. > > Tha

[jQuery] jQuery API extension for Dreamweaver

2008-01-05 Thread Chris Charlton
BETA: http://xtnd.us/download/dreamweaver/jquery/ Works with Dreamweaver MX (6), 7, 8, and CS3 (9). Provides the jQuery API via code hints and snippets in Dreamweaver's code view. Please send me your thoughts, ideas, notes, etc. to [EMAIL PROTECTED] - thanks!

[jQuery] drag'n'drop, double added element

2008-01-05 Thread quard
Hello. I'm trying to create drag'n'drop interface with jQuery UI. See code for adding to node. $("#dropzone").droppable({ accept: '.imagethumb', activeClass: 'droppable-active', hoverClass: 'droppable-hover',

[jQuery] Persistent menu using cookies based rather than location based

2008-01-05 Thread Mali
Hi, I am fairly new to jquery but I have been practicing for a month. I would like to create a jquery persistent menu. I've been searching for a perfect solution but could not find one. I have start with a basic menu http://www.ecommercewebtemplates.net/test/test.html The menu is expanded / coll

[jQuery] Re: build my first jquery plugin multiselect

2008-01-05 Thread Quinode
I'm french, my english isn't better I tried the demo under firefox 2 but select the menus did nothing ?

[jQuery] SimpleModal v1.1 released

2008-01-05 Thread Eric Martin
Hello, I've released a new version of SimpleModal. I added some new options that allow direct CSS styling as well as moved the critical CSS attributes from external stylesheets into the script. Another big change is the way that the modal dialog data is handled. Now, SimpleModal will, by default

[jQuery] jQuery tablesorter problems

2008-01-05 Thread soren121
I've followed all of the instructions on the jQuery tablesorter website, but the Tablesorter refuses to show up on Firefox 2.0.0.11 on Linux. Unfortunately, I can't give links because the table is in the site's admin panel. So, help? -soren121 ToonCity News (tcn.uni.cc) -- View this message in

[jQuery] :last-child problem

2008-01-05 Thread poncjusz
Hi, I've got strange problem with :last-child selector, my html structure: and jquery script: $(".box-full .info:last-child").addClass("last"); what is strange that $(".box-full .info:first-child").addClass("last"); works perfect! thanks in advance Tomek

[jQuery] Manipulating elements with a click

2008-01-05 Thread Yasmary Mora
Hi, I'm not really sure how to do traversing and such, or even if that's what I need to do. I have these 3 tabs (in list format). I need to make it so that when clicking on one of them, it changes the style of the element that contains the link. Here's the code for the tabs: First T

[jQuery] Re: cluetip question

2008-01-05 Thread Shawn
Yes, you can. First, you specify the attribute that contains the ajax page OR the name of the local element to show. If you are doing local a local element, you then set the "local" property to true, and adjust any other properties as needed. Using a local element is mutually exclusive of an

[jQuery] Re: Debug Tools - Charles, DebugBar, Firebug Lite

2008-01-05 Thread Phil Glatz
cfdvlpr wrote: > > How do you test in both IE 6 and IE 7? Are you able to install both > > these on the same machine or do you have more than one machine? I use the Microsoft Virtual PC: http://pingv.com/blog/glhines/200712/browser-testing-ie6 It works very well, and since it has its own regist

[jQuery] XML Processing

2008-01-05 Thread Jamie
Hey, I am attempting to process an XML document using jQuery but am hitting a brick wall. I've looked all over the web and it looks like this should be a very simple thing to do but I keep getting the error "Object does not support this property or method.". I'm using jQuery 1.2.1 in IE6. I've

[jQuery] Re: Why is it not working?

2008-01-05 Thread Eric Martin
Are you including the and tags in the external js file? If so, remove them and then try it. On Jan 3, 8:05 pm, DeaR <[EMAIL PROTECTED]> wrote: > How come when I put everything in like this, it will not be working? > > function disappear() { > $("#response").fadeOut("slow")} > > $(docum

[jQuery] Is there a problem with JQuery Form Plugin and v1.2.1 ?

2008-01-05 Thread Quinode
I use a lot JQuery on my sites although I'm not a savvy javascript writer (but that's common now) I turned to 1.2.1 to be able to use the new version of Tabs. It did not arrive immediatly (that is why i scratch my head hard) but within two weeks I began having more and more problems with every jq

[jQuery] slideup/slidedown flicker

2008-01-05 Thread PJ
I have seen this issue raised before but I haven't seen an answer to the issue yet for v1.2.1. If the answer does exist then please let me know and apologies for missing it - but just in case. I get a flicker when i use slideUp immediately after the element should disappear. This ONLY happen

[jQuery] Re: Accessing Another Window

2008-01-05 Thread Steve @ MFB
Problem Solved. newwindow.$("#example > ul").tabsAdd('#new-tab', 'Customer #4'); Reference the new window first, then the traditional jquery function -Steve On Jan 3, 11:27 am, "Steve @ MFB" <[EMAIL PROTECTED]> wrote: > Looking for information on how to access an opened window via: > > $("neww

[jQuery] Re: using animate() with duration/queue object and callback doesn't work

2008-01-05 Thread chrismarx
ok, yeah that works. i guess i was wondering how to make it work with the "queue" option. i ended up just putting the callback in the second animate call $elem.animate( {opacity:0}, {queue:false, duration:600} ) .animate( {height:"hide"}, 700, callback ); On Jan 4, 11:15 am, Alexandre P

[jQuery] Re: Drop Shadow Plugin

2008-01-05 Thread [EMAIL PROTECTED]
Magical script Larry! Can you explain a little how you turn an image into shadow? I expect it happens somewhere around shadows[0] jthis.close(), but can't understand how that makes things shadow- grayish. Sincerely, Paul On Jan 3, 10:54 pm, McLars <[EMAIL PROTECTED]> wrote: > Hannes, > > Act

[jQuery] Processor-intensive JavaScript considerations

2008-01-05 Thread timothytoe
I have an application that is very processor-intensive. It can takes up to a minute to run. In order to keep the browser from bringing up a dialog that asks the user if he or she wants to bail, I break the work into chunks that are chained together with setTimout(). I'm having trouble getting smo

[jQuery] Superfish Hide Menu FF Problem

2008-01-05 Thread Christian M
Hey Joel, I'm using your menu and it is really great! There is just one little question I have: I built a horizontal version of the menu. When I "mouseout" from a sub menu right above an input tag the menu doesn't hide. Even if I click in the input box it stays there. This is just a Firefox probl

[jQuery] Re: jquery validation demo errors

2008-01-05 Thread Gonzo
Thanks for catching that problem. There was a problem when the metadata plugin switched from $.meta to $.metadata (see http://tinyurl.com/yv8mw5). These demo files must've been missed for the release of v1.1.2, but they are correct in current SVN. Jörn will probably update the demos on his site

[jQuery] Re: jquery validator addMethod library?

2008-01-05 Thread Gonzo
I don't think there are any lists of extra validation methods, other than the additional-methods.js file that comes with the plugin. Most of them are generic and useful as is, some of them are examples (like ziprange) that would need to be modified for each user. Feel free to contribute your val