[jQuery] Re: Noob question: How to access a PHP variable and append it to the html?

2007-11-29 Thread bingo
hi you can do it this way $document({ $("div#mydiv").html("No of Users: " + ""); }) On Nov 30, 12:55 am, Action <[EMAIL PROTECTED]> wrote: > On Nov 29, 8:02 pm, Wizzud <[EMAIL PROTECTED]> wrote: > > > > > For example ... ? > > > On Nov 29, 9:34 pm, Action <[EMAIL PROTECTED]> wrote: > > > >

[jQuery] Re: Newbie needs help on selector

2007-11-29 Thread Dan M
Karl, Thanks for taking the time to help! Should I be able to apply the hide method from there??? $('input:not(:checkbox)').prev('label').hide('slow'); Dan On Nov 29, 10:45 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Nov 29, 2007, at 8:00 PM, Dan M wrote: > > > > > All, > > > I don't kn

[jQuery] Re: slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Rob_
> Woops! My bad. > Should be this: "this" is finally working! :-)) But as a result I ran into a new problem, which I'll think over first (before possibly asking about it tomorrow). So getting there..., thanks to You :)

[jQuery] Re: jQuery.extend not working for function as target,is it a bug?

2007-11-29 Thread Jacky Chen
Hi polyrhythmic, what reversion number of jquery you use? i use the newest jquery from svn.reversion number of the jquery is #3973,is that of you used? * $Date: 2007-11-29 07:53:54 +0800 (星期四, 29 十一月 2007) $ * $Rev: 3973 $ Regards Jacky 2007/11/30, polyrhythmic <[EMAIL PROTECTED]>: > > > Hello

[jQuery] Trying to Ajax-swap two forms

2007-11-29 Thread howardk
Hi, I think I'm missing something obvious. I'm trying to save screen real-estate and have a search-form do an ajax-swap on a submit with the results page that it creates. The results page is also a form (simply because it has a submit buttom at the bottom at this point), which likewise is supposed

[jQuery] Re: Noob question: How to access a PHP variable and append it to the html?

2007-11-29 Thread Action
On Nov 29, 8:02 pm, Wizzud <[EMAIL PROTECTED]> wrote: > For example ... ? > > On Nov 29, 9:34 pm, Action <[EMAIL PROTECTED]> wrote: > > > I have a PHP array of data I want to be able to append to the html > > using jquery and ajax. I want to be able to add different elements of > > the array to

[jQuery] Re: Masked Input Plugin 1.1.2

2007-11-29 Thread sawmac
On Nov 29, 6:32 pm, Josh Bush <[EMAIL PROTECTED]> wrote: > I just released version 1.1.2 of my Masked Input Plugin for jQuery. Josh, that's great. Very nice implementation with just the right amount of information for users to quickly figure out what they need to input. I'll definitely be tryin

[jQuery] Re: slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Karl Swedberg
Woops! My bad. Should be this: $("dt a").click(function() { var theLink = this; $("dd:visible").slideUp(600, function() { //putting this in the callback of the slideUp makes it wait until the slideUp finishes window.location = theLink.hre

[jQuery] Re: Newbie needs help on selector

2007-11-29 Thread Karl Swedberg
On Nov 29, 2007, at 8:00 PM, Dan M wrote: All, I don't know if this is the correct place to post this but here goes... I have form with many elements (textboxes, selects, textareas and such). Each element has a label just before it. I'm trying to select all of the labels in the form EXCEP

[jQuery] Re: JQuery Form Plugin with multiple forms per page

2007-11-29 Thread Tom Duke
Hi, This is the best I can do so far, the form is getting submitted but the target id is still 'undefined'.Just to be clear what I am trying to do. I have forms in table cells as part of a CMS. When the form gets submitted I only want the contents of the cell updated (i.e. the form code its

[jQuery] Re: slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Rob_
The Referring URL on the error_404 page is the one of the page I was on 1) very strange then that it gives error 404 ..., since it's just a reload? 2) I need that Referring / new url to be the link of the "dt a" I clicked. The page has to go on to there. How do I add that?

[jQuery] Re: using jcarousel as image viewer - how to load large image onclick with loading animation

2007-11-29 Thread Brad Hile
Hi maddog I had to change things a bit but did manage to get click events working by using the jcarousel class assigned to each image $(".jcarousel-item").click( function() { // do stuff return false; }); Hope that helps you Brad On Nov 20, 11:09 pm, maddog <[EMAIL PROTECTED]> wrote: > Did yo

[jQuery] Re: slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Rob_
I see the slideUp now, but it continues by going to a non-existing url (can't find out which one so far) Currently my pages are one folder deep. Could that be the cause and would the this.href need tweaking? www.site.com/myFolder/myPages.htm Thanks again for your attention, Karl. This really is

[jQuery] Re: quick question, selecting dynamic elements

2007-11-29 Thread Josh V
wow silly me, after all I am trying to target the ID, # would be useful. :p ill give that a try tomorrow. On Nov 29, 7:22 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > On Nov 29, 2007, at 6:04 PM, Josh V wrote: > > > > > > > on click i am storing the ID of an the i clicked. > > > i am then rep

[jQuery] Re: Using animate within an IFrame

2007-11-29 Thread Luciano G. Panaro
I think what's going on is that you are trying to access a dom element of the Iframe doc, and AFAIK you can't do that directly with jQuery selectors. However I found a discussion where this is solved: http://groups.google.com/group/jquery-en/browse_thread/thread/744ba7fdabd9066a/d060e3f85c3bdbd8

[jQuery] Newbie needs help on selector

2007-11-29 Thread Dan M
All, I don't know if this is the correct place to post this but here goes... I have form with many elements (textboxes, selects, textareas and such). Each element has a label just before it. I'm trying to select all of the labels in the form EXCEPT those that precede a checkbox. Thanks in advan

[jQuery] Masked Input Plugin 1.1.2

2007-11-29 Thread Josh Bush
I just released version 1.1.2 of my Masked Input Plugin for jQuery. Felix Geisendörfer helped me mash out a few things with this release. He fixed the bug for Mac/Firefox with the backspace key and got me to open up the caret positioning functions. Thanks Felix! Here are the changes for this rele

[jQuery] jQuery Form Plugin - redirect after success

2007-11-29 Thread Web Specialist
Hi all. I'm using jQuery Form Plugin(http://www.malsup.com/jquery/form/) to validate a form with ajax. This is js code: .ajaxStart(function() {$(this).show();$('#divResposta').hide()}) .ajaxStop(function() {$(this).hide();}) $('#frm').ajaxForm({

[jQuery] Re: Noob question: How to access a PHP variable and append it to the html?

2007-11-29 Thread Wizzud
For example ... ? On Nov 29, 9:34 pm, Action <[EMAIL PROTECTED]> wrote: > I have a PHP array of data I want to be able to append to the html > using jquery and ajax. I want to be able to add different elements of > the array to different parts of the page. > > How can I go about doing this?

[jQuery] Re: escaping . in div identifiers!

2007-11-29 Thread Wizzud
Example that works: $(document).ready(function(){ $('.clic').click(function(){ var s = '#b'+$(this).text().replace(/\./g,'\\.'); $(s).text(s); }); }); LX.E620Y.002 On Nov 29, 9:09 pm, jonnybravo <[EMAIL PROTECTED]> wrote: > ps heres the important parts of the pastebin for your con

[jQuery] Re: select element by id

2007-11-29 Thread Karl Swedberg
On Nov 29, 2007, at 4:44 PM, Goon wrote: can you select elements with a partial id, something like this: $("#my*") instead of $("#my_id") Well, sort of. You'll have to do it by the ID attribute, using the attribute selector. $('[id*=my_id']) Warning: this can be a little slow if you

[jQuery] Re: slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Karl Swedberg
On Nov 29, 2007, at 6:44 PM, Rob_ wrote: Hi again :-) Hello again. :-) $("dt a").click(function() { $("dd:visible").slideUp(600); }); If I want to quickly slideUp a submenu before I load a new page, there is no visible slideUp and the page loads immediately... You need to preve

[jQuery] Re: quick question, selecting dynamic elements

2007-11-29 Thread Karl Swedberg
On Nov 29, 2007, at 6:04 PM, Josh V wrote: on click i am storing the ID of an the i clicked. i am then replacing characters in that string to get the desired resulting string. i am then trying to toggle a div whos ID is the resulting string. heres what i got. $("ul#specialsNav

[jQuery] Re: jQuery.extend not working for function as target,is it a bug?

2007-11-29 Thread Wizzud
I think it may be down to the distinction between function target(){ /*this one won't extend!*/ } and var target = function(){ /*this one will extend!*/ }; ? On Nov 29, 6:23 pm, polyrhythmic <[EMAIL PROTECTED]> wrote: > Hello Jacky, > > I can't reproduce your error. jQuery.extend should work

[jQuery] Multiple jCarousel 's on one page

2007-11-29 Thread Josh V
hi. i have a site where i need two different carousels on the same page. each carousel has a different purpose with different items and different controls. how can i go about getting this done? it seems to me there would be a css conflict issue with the jquery.jcarousel.css file. how do i specify

[jQuery] select element by id

2007-11-29 Thread Goon
can you select elements with a partial id, something like: $("my*") instead of $("my_id")

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Penner, Matthew
Wow, this is great! I can't wait to use it on some of my apps. Great job! Matt Penner -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Josh Nathanson Sent: Thursday, November 29, 2007 12:46 PM To: jquery-en@googlegroups.com Subject: [jQuery] [A

[jQuery] quick question, selecting dynamic elements

2007-11-29 Thread Josh V
on click i am storing the ID of an the i clicked. i am then replacing characters in that string to get the desired resulting string. i am then trying to toggle a div whos ID is the resulting string. heres what i got. $("ul#specialsNav li a").click( function(){ var whi

[jQuery] slideUp submenu before loading a new page (it won't wait)

2007-11-29 Thread Rob_
Hi again :-) $("dt a").click(function() { $("dd:visible").slideUp(600); }); If I want to quickly slideUp a submenu before I load a new page, there is no visible slideUp and the page loads immediately... How can I get it to wait and view the slideUp first, please? Thanks!

[jQuery] select element by id

2007-11-29 Thread Goon
can you select elements with a partial id, something like this: $("#my*") instead of $("#my_id")

[jQuery] Validation Problem...

2007-11-29 Thread Rick Faircloth
Why would the same validation routine work well on one page and then when applied to another site not return the validation? The params are attached to the URL. it's not like that on the first site where the validation is working. Quick ideas, anyone, without first getting into all the code? Tha

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread Karl Swedberg
On Nov 29, 2007, at 4:07 PM, Guy Fraser wrote: Rey Bango wrote: Mootools itself is not the best for interfaces. Mootool users, though, appear to go to great length to style their apps nicely. It's a pity there isn't more cross-pollination between jQuery and Mootools. Both are great lib

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Josh Nathanson
That's really sweet! :D I believe there was a plugin that could work out most-used words on a page and combined with this plugin it would be a superb heatmap of words. I can also see uses in all sorts of tag clouds as well :D Awesome, I'm really looking forward to seeing how people use it!

[jQuery] Noob question: How to access a PHP variable and append it to the html?

2007-11-29 Thread Action
I have a PHP array of data I want to be able to append to the html using jquery and ajax. I want to be able to add different elements of the array to different parts of the page. How can I go about doing this?

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread Guy Fraser
Rey Bango wrote: > Mootools itself is not the best for interfaces. Mootool users, though, > appear to go to great length to style their apps nicely. It's a pity there isn't more cross-pollination between jQuery and Mootools. Both are great libraries, but I have a strong preference for jQuery

[jQuery] Re: escaping . in div identifiers!

2007-11-29 Thread jonnybravo
ps heres the important parts of the pastebin for your convenience: function addCart(code,session){ $("#b\\[code\\]\\").html(''); $.post("index.php?p=viewCart&add="+code, function(data){ $('#cartbox').fadeOut( 'normal', function() { $(this).load('includes/check_sum.box.p

[jQuery] jQuery Cycle - scrollHorz

2007-11-29 Thread Anjing
Hi, I am using the transition scrollHorz in the great Cycle plugin. I was wondering if anyone knew how to make scrollHorz display a preview of the incoming/next slide on the right side and then scroll with the outgoing image when it comes in. This would only be present on the right side, based off

[jQuery] Re: Superfish, IE Problems

2007-11-29 Thread Beau Huber
Thanks for the suggestions, I'll give them a try! --Beau On Nov 28, 5:14 pm, cromeis <[EMAIL PROTECTED]> wrote: > > Anyway, I've got the menus working the way I want in Firefox, but > > can't get them to work quite as well in IE 6 & 7. The two problems > > I'm facing in IE 6/7 is that the third

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Guy Fraser
Josh Nathanson wrote: > Examples and downloads: > http://www.jnathanson.com/blog/client/jquery/heatcolor/heatcolor.html > > Comments/suggestions welcome! That's really sweet! :D I believe there was a plugin that could work out most-used words on a page and combined with this plugin it would be

[jQuery] Re: finding if a link exists, or what it's prepended with

2007-11-29 Thread Rob_
Thank you *s* much, Karl! :-) The first answer finally solved it straight away. And I've learned from both. It all seems so intuitive, until it's my turn... :-p

[jQuery] Using animate within an IFrame

2007-11-29 Thread t3k
I'm trying desperately to figure out a problem using animate, iframes, and jmedia. It goes something like this: I have a piece of media (youtube video) displaying inside a definition list: http://www.macromedia.com/go/getflashplayer"; src="http://www.youtube.com/v/x2wgJdMoSDg&aut

[jQuery] Re: [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Andy Matthews
This is beautiful! I can see uses for this completely outside of data presentation. What about an interactive art map with invisible content. The user has no clue what values are contained inside the cells, but sorting various columns gives you a marvelous effect. andy -Original Message--

[jQuery] [ANNOUNCE] New plugin - HeatColor

2007-11-29 Thread Josh Nathanson
HeatColor is a plugin that allows you to assign colors to elements, based on a value derived from that element. The derived value is compared to a range of values, either determined automatically or passed in, and the element is assigned a "heat" color based on its derived value's position wi

[jQuery] Re: DateJS: Robust Date manipulation library

2007-11-29 Thread Jörn Zaefferer
Nicolas Hoizey schrieb: This came through my feed reader this morning, and I thought it looked like the kind of thing jQuerians might enjoy: http://www.datejs.com/ I really don't like the weird syntax they use. This Date.today().next().thursday(); is not real chaining IMHO. Even more (

[jQuery] escaping . in div identifiers!

2007-11-29 Thread jonnybravo
Hi guys, i'm having trouble escaping the . in my div identifers (because i use unique ID's and cannot alter the . so have to make it work!) I've read: http://docs.jquery.com/Frequently_Asked_Questions#How_do_I_select_an_element_that_has_weird_characters_in_its_ID.3F and here is my code ( php &

[jQuery] Re: Browser Exit Event

2007-11-29 Thread [EMAIL PROTECTED]
Thanks for all the replies! I had tried the unload event, but I had the same doubts Klaus had about the reliability of that approach, which is why I asked here to get some insight on the problems with doing something like this. Of course, persisting the icons when they are moved would be easier, b

[jQuery] Re: IIS permission problem Re: Can $(document).ready() be put into a separate JS file?

2007-11-29 Thread Stephen
Thanks to everyone who replied to this thread in helping me debug the problem. --Stephen On Nov 28, 4:54 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > hehe, permissions would have been my second choice. > > My coding mantra: If in doubt, check permissions! > > On Nov 28, 4:10 am, Stephen

[jQuery] Re: Explaining this or .this or .this()

2007-11-29 Thread Priest, James (NIH/NIEHS) [C]
I think you could do something like: $("div").each(function() { $(this).css('color', 'red'); }); Basically all this is doing is looping over each DIV on your page and at each DIV (this) it's changing the color of that div. Here is another one I did for a recent project - I have a list of

[jQuery] Re: Explaining this or .this or .this()

2007-11-29 Thread FrankTudor
I fell like I could get this concept. I'm close. I think I need to create something, but i don't no 'this' so I don't know how to use it. Does that example work that you posted...where does it log? to the current directory? I can't 'write' or 'create' in the environment i working. Could you

[jQuery] Re: Explaining this or .this or .this()

2007-11-29 Thread Josh Nathanson
So then it pulls part of a function? Is 'this' in the example you made pulls $("div") or $("div").each It doesn't pull part of a function...it pulls the object within which the function is executing. In my example, the function is "each", and the object within which it is executing is the

[jQuery] Re: Explaining this or .this or .this()

2007-11-29 Thread FrankTudor
So then it pulls part of a function? Is 'this' in the example you made pulls $("div") or $("div").each Frank On Nov 29, 12:38 pm, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > I'll give it a shot...and please gurus correct any mistakes here..."this" > refers to the object context within which i

[jQuery] Re: Explaining this or .this or .this()

2007-11-29 Thread Josh Nathanson
I'll give it a shot...and please gurus correct any mistakes here..."this" refers to the object context within which it is referenced at runtime. So, if you have a bunch of divs: $("div").each(function() { console.log(this); }); You will see in the console each of the divs as it loops over

[jQuery] Re: jQuery.extend not working for function as target,is it a bug?

2007-11-29 Thread polyrhythmic
Hello Jacky, I can't reproduce your error. jQuery.extend should work for functions, this is how it works internally. Perhaps there is an issue in your code I cannot see. I ran the following through the Firebug console just now with these results: [ : my commands ] >>> var targetfn = func

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread 1Marc
Weepy, those datepicker skins are very nice! I've seen great skins for jQuery UI Datepicker as well, but unfortunately they were proprietary and could not be released to the public. Pretty datepicker skins are certainly on my task list for UI Datepicker, and until then it is easy to make skins s

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread Jean
And they are very good in this uhn =p Let jqueryfy them \o/ On Nov 29, 2007 2:59 PM, Rey Bango <[EMAIL PROTECTED]> wrote: > > Mootools itself is not the best for interfaces. Mootool users, though, > appear to go to great length to style their apps nicely. > > Rey > > > Jean wrote: > > Mootools al

[jQuery] Re: CSS JS Library - is there a jQuery equivalent?

2007-11-29 Thread sawmac
On Nov 29, 5:16 am, Guy Fraser <[EMAIL PROTECTED]> wrote: > Another sweet thing found on > Ajaxian:http://feeds.feedburner.com/~r/ajaxian/~3/192351009/new-css-javascrip... > > There was recently a thread regarding a jQuery plugin which dealt with > CSS but I can't find it now. Maybe you're thi

[jQuery] JQuery Form Plugin with multiple forms per page

2007-11-29 Thread Tom Duke
Hi all, New to the list and jquery. I am trying to bind the JQuery form plugin to multiple forms on a single page. I can do this but I cannot figure out how to assign different options for each form. The form code is :- ... Where the rid is unique for each form. My JQuery code is :- $(doc

[jQuery] Cluetip insertionafter

2007-11-29 Thread Merlin
Hi there, I am having trouble with cluetip plugin regarding the insertionElement. Basicly my code looks like this: Problem is, that the cluetipp always shows up on the same spot, not next to the link I click. I believe that this is because of the insertionelement: $.cluetip.setup({in

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread Rey Bango
Mootools itself is not the best for interfaces. Mootool users, though, appear to go to great length to style their apps nicely. Rey Jean wrote: Mootools always the best for interface =/ On Nov 29, 2007 2:37 PM, weepy <[EMAIL PROTECTED]> wrote: http://www.electricprism.com/aeron/calendar/

[jQuery] Re: Pretty Calendar Plugin

2007-11-29 Thread Jean
Mootools always the best for interface =/ On Nov 29, 2007 2:37 PM, weepy <[EMAIL PROTECTED]> wrote: > > http://www.electricprism.com/aeron/calendar/ > > Unfortunately it's in MooTools - would it be difficult to port ? > > -- []´s Jean www.suissa.info Ethereal Agency www.etherealagency.co

[jQuery] Re: [SITE SUBMISSION] Genfavicon.com

2007-11-29 Thread Andy Matthews
VERY nice! -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Thursday, November 29, 2007 8:17 AM To: jquery-en@googlegroups.com Subject: [jQuery] [SITE SUBMISSION] Genfavicon.com You can read about here: http://ajaxian.com/archi

[jQuery] Pretty Calendar Plugin

2007-11-29 Thread weepy
http://www.electricprism.com/aeron/calendar/ Unfortunately it's in MooTools - would it be difficult to port ?

[jQuery] Re: SITE: Genfavicon

2007-11-29 Thread Rey Bango
Beat ya to it Guy! :) LOL! Thanks for posting. Rey... Guy Fraser wrote: Nothing to do with me but spotted this via Ajaxian - it uses jQuery for it's DOM and Ajax work: http://www.genfavicon.com/ Original Ajaxian article: http://feeds.feedburner.com/~r/ajaxian/~3/192329297/genfavicon-a-fav

[jQuery] Explaining this or .this or .this()

2007-11-29 Thread FrankTudor
There is a concept I am struggling with and I am not sure how to approach it. I am trying to understand: .this I don't know if an explanation or an example would be best. But I want to understand it. I have tried to read an explanation and it doesn't make sense. Can someone help me? Frank

[jQuery] Re: Question regarding JQuery tabs UI

2007-11-29 Thread cjiang
Thank you for the message. I tried your suggestion and it didn't work. I am thinking that the reason might be because of the way of Jquery to evaluate the included Javascript in the repsonse page. When I am using livequery plugin like $('#categories').livequery(function(){$(this).tabs(2, {remote

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Ah, I see your example shows how i can bind the tabs event to the link in the ajaxed content. Would this work? I'm going to test this evening and let you know how i come along.. On Nov 29, 3:44 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 29 Nov., 10:39, Richard W <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Sorry, I posted my shoddy code after you had replied to my post. I don't get these delayed messages.. In any case, the tabLoad method works perfectly for me, thank you for your help! On Nov 29, 3:44 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 29 Nov., 10:39, Richard W <[EMAIL PROTECTED]> wr

[jQuery] Form target out of jquery plugin cluetip

2007-11-29 Thread Merlin
Hello everybody, I am relativly new to Jquery so forgive me if this is a bit basic. I am opening a form with cluetip that where user can submit. Now if I hit the submit button the parent window gets affected, not the iframe. I believe from forum readings that I have to add a target into that for

[jQuery] Problem with classes

2007-11-29 Thread Merlin
Hi everybody, it seems that I am doing something wrong concerning CSS classes with JQuery. I am using the plugin cluetip to open a new iframe tip. Now that works perfectly, just it does not if I have the invoking .. come code test Example not working: .. come code test That is really stran

[jQuery] SITE: Genfavicon

2007-11-29 Thread Guy Fraser
Nothing to do with me but spotted this via Ajaxian - it uses jQuery for it's DOM and Ajax work: http://www.genfavicon.com/ Original Ajaxian article: http://feeds.feedburner.com/~r/ajaxian/~3/192329297/genfavicon-a-favicon-generator

[jQuery] CSS JS Library - is there a jQuery equivalent?

2007-11-29 Thread Guy Fraser
Another sweet thing found on Ajaxian: http://feeds.feedburner.com/~r/ajaxian/~3/192351009/new-css-javascript-library There was recently a thread regarding a jQuery plugin which dealt with CSS but I can't find it now. Anyway, would it be possible to get something like that library in to jQuery a

[jQuery] Re: return true/false

2007-11-29 Thread KidsKilla .grin! wuz here
> "return true" part doesn't work on LI element? and what you expected? and try this flag = !($(this).children("ul").length); $(this).css("background-color",(flag ?"red" : "black"); return flag; instead of if ( $(this).children("ul").length ) {

[jQuery] jQuery.extend not working for function as target,is it a bug?

2007-11-29 Thread Jacky
/* * jQuery 1.2.1 - New Wave Javascript * * Copyright (c) 2007 John Resig (jquery.com) * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. * * $Date: 2007-11-29 07:53:54 +0800 (星期四, 29 十一月 2007) $ * $Rev: 3973 $ */ the jQuery reversion is #3973,function

[jQuery] Re: Jquery call strips away "

2007-11-29 Thread Jean
For that i use $.ajax({ type: "GET", url: "view/agenda/agenda.js", dataType: "script"

[jQuery] Re: Only number

2007-11-29 Thread Gonzo
You can use the validation plugin (http://jquery.com/plugins/project/ validate). There is a number validation already (actually, there's number, digits only, and range), but I believe you'll need to create your own validation for only alpha characters. You can easily add your own validation rule

[jQuery] [SITE SUBMISSION] Genfavicon.com

2007-11-29 Thread Rey Bango
You can read about here: http://ajaxian.com/archives/genfavicon-a-favicon-generator and see it in action here: http://www.genfavicon.com/ It takes any pic and generates a favicon for it. Rey

[jQuery] Re: Scroll effect

2007-11-29 Thread Flesler
This won't be enough by itself, but might save you some time http://jquery.com/plugins/project/ScrollTo Ariel Flesler On 29 nov, 07:59, GianCarlo Mingati <[EMAIL PROTECTED]> wrote: > no. > this is not that easy, even with jquery > ;-P > GC > > On Nov 28, 4:59 pm, Gerson Goulart <[EMAIL PROTECTED

[jQuery] Re: finding if a link exists, or what it's prepended with

2007-11-29 Thread Karl Swedberg
On Nov 28, 2007, at 11:56 PM, Rob_ wrote: Hi all :-) Hi Rob. :-) jQ newbie here who's finding it much less intuitive than I anticipated to figure things out... Wish the examples were a bit more diverse, because I'm having to try 20 variations of every little thing before it works. Anyway.

[jQuery] Re: Question regarding JQuery tabs UI

2007-11-29 Thread Klaus Hartl
On 29 Nov., 05:54, cjiang <[EMAIL PROTECTED]> wrote: > Hi, > > I am working on an application in which I use JQuery Tabs plugin. The > basic layout of the page is that there is a tree structure on the left > side of the page. When the user clicks on any node of the tree, it > fires an Ajax call a

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Klaus Hartl
On 29 Nov., 10:39, Richard W <[EMAIL PROTECTED]> wrote: > Awesome, that is exactly what i'm looking for. Thank you Klaus, and > thank you for an excellent plugin! I'm confused. So I can disregard your former post? In any case, here's how I would do it (untested): var $tabs = $(...).tabs({ lo

[jQuery] Re: Duplicate values in form fields

2007-11-29 Thread Michael Price
Hi Wizzud, I'll give that a try - thanks! :) Regards, Michael Price

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
Awesome, that is exactly what i'm looking for. Thank you Klaus, and thank you for an excellent plugin! On Nov 29, 9:29 am, Klaus Hartl <[EMAIL PROTECTED]> wrote: > On 28 Nov., 20:06, Richard W <[EMAIL PROTECTED]> wrote: > > > Hi There > > I'm realling ejoying using tabs, especially the ajax conte

[jQuery] Re: Tablesorter and event handlers on table rows

2007-11-29 Thread pambuk
Don't take this the wrong way, but I love you man, everything works great, thanks a lot :) On Nov 29, 9:10 am, "Christian Bach" <[EMAIL PROTECTED]> wrote: > Hi Guys, > > This issue has been resolved in the latest tablesorter release. > > Get it from:http://tablesorter.com/ > > /Christian > > 2007

[jQuery] Re: Tabs 3 Update tab content

2007-11-29 Thread Richard W
OK i've been playing around, and come with the following code, which is executed without a binded event, as the link would be retrieved via ajax, therefore I cannot see how I can bind an event to the link. EG: Load Content And here is the innerload function: innerload: function(url) {

[jQuery] return true/false

2007-11-29 Thread bytte
I have the following jquery code $('.menu li').click(function() { $(this).children("ul").slideDown("fast"); $(this).siblings("li").children("ul").slideUp("fast"); if ( $(this).children("ul").length ) { $(this).css("background

[jQuery] Re: Scroll effect

2007-11-29 Thread GianCarlo Mingati
no. this is not that easy, even with jquery ;-P GC On Nov 28, 4:59 pm, Gerson Goulart <[EMAIL PROTECTED]> wrote: > Hey there, > > Someone know how to do this mouseover scroll efect (in playlist) using > jQuery: > > http://www.flashloaded.com/flashcomponents/flvplayerpro/example1.html > > Thanks!

[jQuery] Re: jquery draggables() not working

2007-11-29 Thread Richard D. Worth
The ui folder was moved in svn to /trunk/ui: http://dev.jquery.com/view/trunk/ui/current/ui.draggable.js You'll have to clear your browser cache for the demo to show the change and work. - Richard On Nov 26, 2007 4:59 PM, savil <[EMAIL PROTECTED]> wrote: > > Hi > > I was wondering why the drag

[jQuery] Re: Duplicate values in form fields

2007-11-29 Thread Wizzud
Example: var uniqueCodes = {} , duplicateCode = false; $('input.bbi').each(function(){ var code = $(this).val(); if(code){ // not empty... // you may want to convert to upper or lower case // here, so the abcDE matches AbCdE, for example // code = code.toUpperCase();

[jQuery] Question regarding JQuery tabs UI

2007-11-29 Thread cjiang
Hi, I am working on an application in which I use JQuery Tabs plugin. The basic layout of the page is that there is a tree structure on the left side of the page. When the user clicks on any node of the tree, it fires an Ajax call and the server returns a fragment of html which includes tabs. Th

[jQuery] Re: DateJS: Robust Date manipulation library

2007-11-29 Thread Nicolas Hoizey
> > This came through my feed reader this morning, and I thought it looked > > like the kind of thing jQuerians might enjoy: > > http://www.datejs.com/ I really don't like the weird syntax they use. This Date.today().next().thursday(); is not real chaining IMHO. Even more (3).days().ago(); Chai

[jQuery] Re: Adding jQuery Libary to JSEclipse

2007-11-29 Thread dehneg
Oups Now the last Aptana update include the last jQuery version. Anyway the update came more than one month after new jQuery release. On 29 nov, 00:30, dehneg <[EMAIL PROTECTED]> wrote: > Aptana is a good plugin for Eclipse. But, as jQuery do not support > scriptdoc format documentation any more

[jQuery] finding if a link exists, or what it's prepended with

2007-11-29 Thread Rob_
Hi all :-) jQ newbie here who's finding it much less intuitive than I anticipated to figure things out... Wish the examples were a bit more diverse, because I'm having to try 20 variations of every little thing before it works. Anyway... At the moment, I have just one thing I still need to find.

[jQuery] Duplicate values in form fields

2007-11-29 Thread Michael Price
Hi all, Need a little help turning theory into code! I have a series of text boxes in a form - there could be hundreds of them, all of which have the class "bbi". Most of them are disabled, but can be enabled by clicking a tickbox (basically it's a list of advertisers and if the tick is ticke

[jQuery] Re: Tablesorter and event handlers on table rows

2007-11-29 Thread Christian Bach
Hi Guys, This issue has been resolved in the latest tablesorter release. Get it from: http://tablesorter.com/ /Christian 2007/11/29, pambuk <[EMAIL PROTECTED]>: > > > Hi, > > I have the exact same problem and frankly, I'm out of ideas. > Last thing I tried was writing a widget, to rebind events