[jQuery] Re: Display message for users with incompat. browsers?

2007-11-11 Thread Wizzud
See http://docs.jquery.com/Browser_Compatibility does jQuery do any browser detection before trying to do anything, or does it just forge ahead, and whether it works or not depends on the browser... If javascript is active then jQuery will attempt to 'run'. (If it's not active then Guy's

[jQuery] cluetip events

2007-11-11 Thread amircx
hey im trying to do a input's that once they are get mouseover it will open a tooltip with options like edit and stuff (icons) my question is in cluetip how can i hide/show a tip via javascript command instad of the close button? and also, is there a flag that i can check is the tooltip is

[jQuery] puzzle of this

2007-11-11 Thread [EMAIL PROTECTED]
hi everyone i am a newbee for jquery and trying to play with it, i was puzzled by the use of this somehow, for examle $('.delete').click(function(){ $.post(test2.php,{id:txt},function(){ this.something};}); here if i want to refer this to the $('.delete') element, what

[jQuery] Help with debugging/finishing a Drupal Digg/Pligg clone

2007-11-11 Thread Merc
Hello, I have just finished writing a full Digg/Pligg Clone. It's based on Drupal, and it is already functional. Have a look here: http://www.drigg.org (a test web site, after importing http://www.fsdaily.com, currently based on Pligg) http://www.drigg-code.org (the web site where I explain how

[jQuery] RE: How to get the TagName of a jQuery object?

2007-11-11 Thread quacrobat
DOH! var $kids=$('*').not('page').not('pages'); ar=new Array(); $kids.each(function(){ar.push(this.tagName)}); sorry guys!

[jQuery] How to get the TagName of a jQuery object?

2007-11-11 Thread quacrobat
Hello, let's say i have an xml (or html or whatever) of this sort: pages page titlefirst/title contentlorem ipsum/content /page page titlesecond/title contentlorem ipsum/content somethingother/something /page /pages and i want to iterate over the tags within each

[jQuery] Future jQuery structure?

2007-11-11 Thread Cloudream
jQuery -Core -UI --Mouse interaction --Widgets --Theme -Fx -Plugins inline: jQuery.png

[jQuery] 'this.$event[...].keys' is null or it isn't an object

2007-11-11 Thread dandi
Hi, I've insterted in my page an external JS menu... now I see all right but when I press F5 key (or when I close the page) I see this error: Row 1 char 1 'this.$event[...].keys' is null or it isn't an object index.php?m=account_home I don't know how to resolve this problem :-( I hope you

[jQuery] retrieve values from func that calls a $.post

2007-11-11 Thread resetstudio
Hi guys! I'm having some problem, because I'm rearanging my programming method. I have the shoppingcart object, and it can fire many methods. But for examples i have a method shoppingcart.set(id,prop,value); that makes an ajax call via $.post and set for example the prop quantity to 5 in the

[jQuery] Online tutorials

2007-11-11 Thread Merc
Hi, I am an experienced programmer. I work with Drupal. I have no experience in Javascript, and every time I need anything I have to ask for help (see previous message). I was wondering if you could give me a list of pointers to: 1) A good tutorial about pure javascript aimed at programmers. I

[jQuery] Getting started

2007-11-11 Thread Steffan A. Cline
I am toying around with a form where I am using the validate plugin. http://bassistance.de/jquery-plugins/jquery-plugin-validation/ What I am after is that before a form is submitted, an ajax query must return true/false in order for the form to validate. Example: A select with country codes

[jQuery] Re: Online tutorials

2007-11-11 Thread Guy Fraser
I can highly recommend the Learning jQuery book from PACKT Publishing. As well as being a great way to learn about jQuery it also gives you a fair bit of info about JavaScript as well. Merc wrote: Hi, I am an experienced programmer. I work with Drupal. I have no experience in Javascript,

[jQuery] Re: cluetip events

2007-11-11 Thread Karl Swedberg
On Nov 11, 2007, at 8:53 AM, amircx wrote: hey im trying to do a input's that once they are get mouseover it will open a tooltip with options like edit and stuff (icons) my question is in cluetip how can i hide/show a tip via javascript command instad of the close button? and also,

[jQuery] Re: puzzle of this

2007-11-11 Thread Karl Swedberg
On Nov 10, 2007, at 9:58 PM, [EMAIL PROTECTED] wrote: hi everyone i am a newbee for jquery and trying to play with it, i was puzzled by the use of this somehow, for examle $('.delete').click(function(){ $.post(test2.php,{id:txt},function(){ this.something};}); here if i

[jQuery] Re: Online tutorials

2007-11-11 Thread Karl Swedberg
Hi Merc, This is a good pure JavaScript tutorial: http://eloquentjavascript.net/contents.html For jQuery tutorials, this page is a great place to start: http://docs.jquery.com/Tutorials --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Nov 10, 2007, at

[jQuery] ajaxContent plugin

2007-11-11 Thread [EMAIL PROTECTED]
Hi I post here to share a piece of code that I am starting to use daily to perform easy ajax calls. The plugin refers to an A tag and use the Href attributes to make the call filling up a #ajaxContent div on the page with the server resposnse. The plugin manage: 1) the display of a loading

[jQuery] Tablesorter + pager question/bug?

2007-11-11 Thread Preston Hunt
Hello, I just found Tablesorter and I'm in love. It's fast, beautiful, easy... However, it looks like there is a bug with the pager module. I checked the code and documentation and didn't see any workaround or mention of this issue, so I thought I would ask about it in the forums. If you go

[jQuery] This jQuery mailing list

2007-11-11 Thread herbasher
I read somewhere that the jQuery mailing list was supposed to be really active. I haven't really seen a sign of that, which makes me wonder. Has the community seen it's days? Is it a safe bet to develop with jQuery - will it be supported for a couple of years by an active community?

[jQuery] Re: Nested getJSON

2007-11-11 Thread herbasher
Pretty, pretty. What's your problem? What are you working on? Herb On Nov 10, 3:45 pm, Mark Lacas [EMAIL PROTECTED] wrote: Here is my code: $.getJSON(/cgi-bin/messages.cgi, { id: last_message }, function( json ) { $.each( json.messages, function( i, item ){

[jQuery] Re: Display message for users with incompat. browsers?

2007-11-11 Thread Guy Fraser
Wizzud wrote: You could perform your own browser sniffing and put up a warning if you detect the use of a not-fully-supported browser, to the effect that some things *may* not work! Possibly a bit off-putting for the visitor? (Also bear in mind that some browsers can lie about about what

[jQuery] Re: Future jQuery structure?

2007-11-11 Thread herbasher
That's nice, good job. Herb On Nov 11, 2:09 am, Cloudream [EMAIL PROTECTED] wrote: jQuery -Core -UI --Mouse interaction --Widgets --Theme -Fx -Plugins jQuery.png 23KViewDownload

[jQuery] Re: Future jQuery structure?

2007-11-11 Thread John Resig
You should re-post this to the jquery-ui list, I know that they've been thinking about this issue, a lot, over there. --John On Nov 11, 2007 4:09 AM, Cloudream [EMAIL PROTECTED] wrote: jQuery -Core -UI --Mouse interaction --Widgets --Theme -Fx -Plugins

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread Ryura
This mailing list is extremely active. It oddly has a very weird lag that makes it seem like it's not active; seems to update every hour or so. I would expect jQuery will stick around, considering all the large corps using it now (even Google is using jQuery!) herbasher wrote: I read somewhere

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread John Resig
Uh - how active were you expecting it to be? We're currently averaging 70-100 posts per day (depending on the day of the week) - which makes it the most active mailing list of any JavaScript library - by far. --John On Nov 11, 2007 1:06 PM, herbasher [EMAIL PROTECTED] wrote: I read somewhere

[jQuery] Re: ajaxContent plugin

2007-11-11 Thread Web Specialist
Andrea, very nice. Do you have plan to create a ColdFusion custom tag to encapsulate this plugin? Cheers Marco Antonio 2007/11/11, [EMAIL PROTECTED] [EMAIL PROTECTED]: Hi I post here to share a piece of code that I am starting to use daily to perform easy ajax calls. The plugin refers to

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread Shawn
When I read your message the first thing that goes through my mind is here's a person who wants to be using the tool with the most hype. I realize I could be wrong on that, but really, shouldn't we be evaluating if the tool does what we need and has support, rather than if it has hype? For

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread RedWolves
This is my first post on the mailing list...but I have been an active community member from the beginning. I don't feel that this mailing list is what defines the community. People are blogging about jQuery everyday. I blog about it constantly. Look at the bug track system jQuery uses...it

[jQuery] Re: ajaxContent plugin

2007-11-11 Thread [EMAIL PROTECTED]
Yes is possible but only as a translator...I mean the Ctag will not write the html code cause in a situation like this is good to keep the max html flexibility as possible, so the idea can be a tag the write only the needed JS to run the plugin for who really do not want to wright the js code

[jQuery] Re: Tablesorter + pager question/bug?

2007-11-11 Thread Guy Fraser
Preston Hunt wrote: And change the number of display entries from 10 to 20 (or any other value), the pager div does not get moved to below the table. It instead ends up on top of the middle of the table. Happens in Firefox 2 and IE7. The #pager div is absolutely positioned using CSS.

[jQuery] Re: or keyword in attribute selectors

2007-11-11 Thread Flesler
If were not interested in an alternative solution to this specific case, then ignore my other post :) Ariel Fleser On 9 nov, 04:41, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a syntax similar to xPath that allows you to do something like this: $('#content a[href$=.jpg or href$=.gif

[jQuery] Re: or keyword in attribute selectors

2007-11-11 Thread Flesler
$('#content a').filter(function(){ return /\.(?:jpe?g|gif|png)$/.test(this.href); }); That will do, I added support for jpeg. Ariel Flesler On 9 nov, 04:41, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Is there a syntax similar to xPath that allows you to do something like this:

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread [EMAIL PROTECTED]
jQuery is definately an active community and the mailing list is very active. http://groups.google.com/group/jquery-en/about You may wish to check out the jQuery website or the IRC Channel. On Nov 11, 6:06 pm, herbasher [EMAIL PROTECTED] wrote: I read somewhere that the jQuery mailing list

[jQuery] Re: This jQuery mailing list

2007-11-11 Thread herbasher
Well that's all really nice to hear. Considering the response this thread got, jQuery is definitely loved and fought for. I definitely chose jQuery over its technical merits and not hype, and boy - it is a nice library. I will be participating in the community. Thanks, Herb On Nov 11, 2:59

[jQuery] Re: Sortable on dynamic content - how to?

2007-11-11 Thread asle
Where do I go for help on this. Anyone?

[jQuery] Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-11 Thread matthew knight
Hi All, I've just posted the latest version of Ingrid datagrid plugin. Incorporates a lot of feedback I've received over the last couple weeks, including: - Row selection - Saving state (page number, column sort amp; direction, selected rows) - Exposed object model, added helper methods like

[jQuery] Re: Google Analytics Tracking With jQuery

2007-11-11 Thread jason
Thanks for taking a look, Craig. I certainly hope it turns out to be something that simple. I'll post back if I see any results. - jason On Nov 9, 11:23 am, Craig [EMAIL PROTECTED] wrote: Bit more... turns out you can declare it in the function, just remove var. So instead of var

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-11 Thread Rey Bango
Guys, I would also like to have folks do cross browser testing on this in order to help Matt truly iron out any issues. People with Safari 2.x installed would be especially helpful. Rey matthew knight wrote: Hi All, I've just posted the latest version of Ingrid datagrid plugin.

[jQuery] Re: Ingrid, jQuery Datagrid : Update, v0.9.1

2007-11-11 Thread Karl Rudd
A quick initial test on Safari 2.0.4 comes up with a syntax error on line 124 of the main JS file, jquery. .css({float: 'left', display: 'block'}) My guess is that it doesn't like float being there (probably one of those keywords that were never used in JavaScript but were still reserved). Put

[jQuery] Safari Mac fatal error

2007-11-11 Thread pd
Hi All Had some trouble today with Safari on a crApple. Thought I should pass it on in case anyone else suffers a similar fate and wants to keep what hair they have (if any) on their heads. This is a case of one browser being significantly more strict than several others. So strict it stops

[jQuery] Re: Safari Mac fatal error

2007-11-11 Thread Michael Geary
That's invalid JavaScript. It's not the duplicate function name that makes it invalid, it's the fact that those are named functions at all. Even if you reduced the code to this, it would still be invalid: $(document).ready( function () { field1.click( function somename () {