[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Michael Geary
> > > My understanding is we put script tags in the head so as to not > > > clutter up the body DOM. I don't think it has anything to do with > > > ready(), and I'm pretty sure ready() doesn't require > > > script tags to be in the head... > > Yes, but if you put the scripts at the end of the

[jQuery] Re: Tabs plugin in floated container

2007-07-16 Thread Klaus Hartl
Rob Desbois wrote: Aha, the solution failed in IE6 though! (Including your test page). A quick play shows the floating #sidebar and #content right instead of left, and putting #content before #sidebar in the source to fix the problem. I daren't go near Opera/Safari now ;-) Opera and Safari

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Erik Beeson
> My understanding is we put script tags in the head so as to not > clutter up the body DOM. I don't think it has anything to do with > ready(), and I'm pretty sure ready() doesn't require script tags to be > in the head... Yes, but if you put the scripts at the end of the body you don't need t

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Brian Cherne
A few months ago I worked the weekend on a prototype that demonstrates the appearance effect I think you're suggesting: http://cherne.net/brian/resources/jquery.slidingPanels.html It's a little different, totally undocumented and sparsely commented as I was just coding to satisfy my inner-geek..

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Klaus Hartl
Erik Beeson wrote: This part of the text seems contradictory with jQuery's habits. Why do we load jQuery.js and all its plugins in the section? (answer: to have .ready()). But should we do it all the time and for all plugins? My understanding is we put script tags in the head so as to not c

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Erik Beeson
This part of the text seems contradictory with jQuery's habits. Why do we load jQuery.js and all its plugins in the section? (answer: to have .ready()). But should we do it all the time and for all plugins? My understanding is we put script tags in the head so as to not clutter up the body DO

[jQuery] AutoCompleter - Adding second occurrence

2007-07-16 Thread AtlantaGeek
I've gotten the AutoCompleter by Jörn Zaefferer at http://bassistance.de/jquery-plugins/jquery-plugin-autocomplete working for one textbox on my page. I'm now trying to add another. The query works fine and it displays the data in the popup, but I get an error when I select something. I'm trying

[jQuery] Re: Plugin idea : server language integrator

2007-07-16 Thread Ganeshji Marwaha
Thanks David... -GTG On 7/15/07, David Duymelinck <[EMAIL PROTECTED]> wrote: Sorry i was away the whole weekend but Stephan Beal answered your question i see. I want to add that many (php) developers want to generate js, css, html with their server language to have full control over every

[jQuery] Re: About APPEND

2007-07-16 Thread Benjamin Sterling
You can't have the div inside the table code like that, try moving it either into a td> or on the outside of the table and see if that works. If not, try: $('#formContents').html(personFields); On 7/16/07, Marco <[EMAIL PROTECTED]> wrote: Dear all, I am getting crazy with a small piece of

[jQuery] Re: Compressed BlockUI plugin?

2007-07-16 Thread Ganeshji Marwaha
Aaron, I would like the jar file... I want to integrate this packer along with my ant build script... -GTG On 7/14/07, Aaron Porter <[EMAIL PROTECTED]> wrote: I just ran some tests against the current version from SVN to see how fast they load on my machine. Firefox 2.0.0.4 on Linux: jquer

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexandre Plennevaux
i think it's a very good start Alexander, congratz! I would personally prefer to have control of the appearance effect so that it looks more like the right-most slide is in front of its left neighbour, and the leftmost one being the most distant one (that is, with the smaller z-index). as a who

[jQuery] Re: jQuery form plugin questions

2007-07-16 Thread Mike Alsup
Chris, You can do one of two things: 1) When the form is submitted return the new comment. In other words, when the new comment is posted, return what you would return from your newcomments.php script. If you do that, your javascript would look something like this: $(document).ready(functio

[jQuery] Re: tablesorter 2.0 - Shiny Brand new documentation!

2007-07-16 Thread Stephan Beal
On Jul 16, 10:02 pm, "Christian Bach" <[EMAIL PROTECTED]> wrote: > The new documentation is located > here:http://lovepeacenukes.com/tablesorter/2.0/docs/ Slick :). A quick bug report for you: Under: "Disabling headers, with inline options" Clicking the "Major" column sorts by a different col

[jQuery] Re: jQuery form plugin questions

2007-07-16 Thread Chris
Thank you for the help mike, I really appreciate it! Try making a comment on our blog. http://www.iphoneappr.com/index.php?post=55 I am trying to make it so that the comment, once submitted, shows up in the list of comments. Thank you! On Jul 16, 3:22 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: jQuery form plugin questions

2007-07-16 Thread Chris
I will put together a simple version of that page tonight if that will help. Thanks again! On Jul 16, 3:22 pm, "Mike Alsup" <[EMAIL PROTECTED]> wrote: > Chris, > > Can you put together a simplified example page. I feel like I'm only > getting part of the picture. > > Mike > > On 7/16/07, Chris <

[jQuery] Re: IE ONLY warning on fadeIn

2007-07-16 Thread Dave Methvin
On Jul 16, 5:23 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I keep getting an error in the IE browsers (6 & 7). > > Error: Can't move focus to the control because it is invisible, > not enabled, or of a type that does not accept the focus. > > $("#advsect").removeClass("hidden"); //

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-16 Thread John Resig
This one seems to have a working patch: http://dev.jquery.com/ticket/1402 --John On 7/16/07, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: Thanks very much, this is great to know. In case 1.1.4 is delayed, is there a workaround or a patch I can use on a temporary basis? JK - Original Message

[jQuery] jqModal and Enter key

2007-07-16 Thread Jack Killpatrick
Pulling some hair out over a situation here, wondering if anyone can shed some light I have a page, with a thickbox on it, which loads a page in it (via thickbox ajax stuff), which has a link on it that opens a jqModal. In the jqModal I have a password textbox and two buttons: btnOK and

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Stephan Beal
On Jul 17, 12:18 am, "Christopher Jordan" <[EMAIL PROTECTED]> wrote: > yeah, I can see where that might be cool, but I still think it may take up > too much of the devs time. Ultimately, though it's up to them if they wanted > to do that sort of thing. I for one wouldn't complain if they did just

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread PaulHan
A way to do this is to call the php file directly in the script tag or css link tag i.e. The nice thing about this is you can then specify which plugins or extra css to include in the querystring like this

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Stephan Beal
On Jul 16, 11:39 pm, "Tane Piper" <[EMAIL PROTECTED]> wrote: > Maybe it's also time to start running a "seal of approval" program, > where plugins are checked over to see if they are plugins, or scripts > or tests/examples. With good code and good documention, it would nice > to see a few more of

[jQuery] Re: Announce: jFeed - jQuery RSS/ATOM feed parser plugin

2007-07-16 Thread Mike Alsup
Another way to get cross-site feeds is to let Google be your proxy: http://www.malsup.com/jquery/gfeed/ Mike On 7/16/07, Jean-Francois Hovinne <[EMAIL PROTECTED]> wrote: FYI, I just posted an article describing a technique to avoid the server-side proxy: http://www.hovinne.com/blog/index.ph

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-16 Thread Jeffrey Kretz
Thanks very much, this is great to know. In case 1.1.4 is delayed, is there a workaround or a patch I can use on a temporary basis? JK - Original Message - From: "John Resig" <[EMAIL PROTECTED]> To: Sent: Monday, July 16, 2007 2:45 PM Subject: [jQuery] Re: Problem with jQuery.fix i

[jQuery] Re: jQuery form plugin questions

2007-07-16 Thread Mike Alsup
Chris, Can you put together a simplified example page. I feel like I'm only getting part of the picture. Mike On 7/16/07, Chris <[EMAIL PROTECTED]> wrote: Any ideas? On Jul 15, 12:07 pm, Chris <[EMAIL PROTECTED]> wrote: > Thank you for the reply mike! I added this to my script: >

[jQuery] Autocomplete - form elements in IE

2007-07-16 Thread Shelane Enos
For the lastest version of the autocomplete plugin ( http://dev.jquery.com/browser/trunk/plugins/autocomplete/), I added the z-index: 9 to the .ac_results class, but I'm still seeing other HTML elements float up above it in IE. Any help in this topic? I have included the plugin dependencies

[jQuery] Re: copy highlighted from a div

2007-07-16 Thread Eric Crull
Not Jquery but this works: function copyToClipBoard(){var clipBoard = oInputElement.createTextRange(); clipBoard.execCommand("Copy");} and its companion, in VBscript. On Jul 16, 4:37 am, ViK <[EMAIL PROTECTED]> wrote: > hi all > > I need to copy to clipboard a highlighted text selected from a

[jQuery] IE ONLY warning on fadeIn

2007-07-16 Thread [EMAIL PROTECTED]
Hi, I keep getting an error in the IE browsers (6 & 7). A Runtime Error has occurred. ... Error: Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus. What I've got... I have five div areas on the page (only one div showing at

[jQuery] Stopping a $.load call

2007-07-16 Thread batobin
Hello everyone. This is a general question about stopping (or overriding) an AJAX call once it has been made. In order to illustrate my question I can give a specific example, but I'm sure this topic is applicable to many people besides myself. So, here's the page I'm working on right now: http:

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Christopher Jordan
yeah, I can see where that might be cool, but I still think it may take up too much of the devs time. Ultimately, though it's up to them if they wanted to do that sort of thing. I for one wouldn't complain if they did just what you're suggesting. I trust that they know what they're doing and know

[jQuery] Re: Interface Elements & jQuery

2007-07-16 Thread skube
Thanks for your response Richard. On Jul 13, 9:05 pm, "Richard D. Worth" <[EMAIL PROTECTED]> wrote: > I just did a quick test, and it doesn't appear they've been tested to work > together. I was able to select a few elements (if I didn't start dragging my > select region on a sortableitem, or it

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Tane Piper
Not at all. All I mean is its still up to the developer to write the plugin and develop unit tests. All I mean is that one of the dev team, or some other process that can work, runs over the plugin looking for good code, and any bugs. This means there won't be lots of different "improvments" l

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Christopher Jordan
Well, Tane if my understand of "official" is right, that means the plug-in will be maintained by the jQuery dev team even if the original author croaks or otherwise abandons development on the plug-in, and that would mean time they have to spend *not* developing more jQuery Core or UI stuff. I du

[jQuery] Re: Problem with jQuery.fix in event model

2007-07-16 Thread John Resig
This is a bug in jQuery that will be fixed in 1.1.4 (which should be coming out soon). There's a ticket open on it now, and we're working to resolve it. --John On 7/16/07, Jeffrey Kretz <[EMAIL PROTECTED]> wrote: I am trying an integration of Ext and jQuery for a new project. In doing a simp

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Andy Matthews
I like it a lot. Only thing that I don't like is that you're using show/hide to display the text. That means that while the blade is sliding to the right, the text is building from the bottom right corner. This makes it lose some of the coolness factor. I'd recommend trying to figure out how to get

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Tane Piper
Damn my last email never sent Maybe its time to do a roll call on plugins. See who is still developing, and who is not. There are some great plugins out there, but they haven't been updated for a while. The plugin repository is great and currently and underused resource. Not all plugins a

[jQuery] Re: syntax errors in jquery-1.1.3.1.js

2007-07-16 Thread Christopher Jordan
Rick, on top of what John said I'll add that you might notice that you can change the behavior of JSLint to allow or disallow certain things. I just know that it's caught several problems for me related to packing problems. I use http://javascriptcompressor, but that appears to be running the same

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Rey Bango
:D Yeah. It drives me nuts when I can't find a plugin that I liked or the code is dated. Christopher Jordan wrote: That's a good idea Rey! :o) On 7/16/07, *Rey Bango* <[EMAIL PROTECTED] > wrote: It was a great question. I know I've been in that pinch and tha

[jQuery] Re: Announce: jFeed - jQuery RSS/ATOM feed parser plugin

2007-07-16 Thread Jean-Francois Hovinne
FYI, I just posted an article describing a technique to avoid the server-side proxy: http://www.hovinne.com/blog/index.php/2007/07/16/133-jss-javascript-simple-syndication On 15 juil, 23:49, "Michael Geary" <[EMAIL PROTECTED]> wrote: > Ah, of course. Server proxy. I should have thought of that. V

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Christopher Jordan
That's a good idea Rey! :o) On 7/16/07, Rey Bango <[EMAIL PROTECTED]> wrote: It was a great question. I know I've been in that pinch and thats why I started archiving these emails on my box as well as downloading copies. That way, if I like the plugin and the author abandons it, I still have t

[jQuery] Re: syntax errors in jquery-1.1.3.1.js

2007-07-16 Thread John Resig
Rick - I just ran jQuery through JSLint and none of the warnings are related to semicolons. Generally its complaints fall into a couple categories foo != undefined (a quick way to check to see if something is defined or not) if ( foo == "bar" ) (using no { ... }, doesn't like that) In fact, th

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Rey Bango
It was a great question. I know I've been in that pinch and thats why I started archiving these emails on my box as well as downloading copies. That way, if I like the plugin and the author abandons it, I still have the code to update it with. Rey Michael E. Carluen wrote: Cool deal, thank

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Michael E. Carluen
Cool deal, thanks for your offer, Rey... that's awesome. Nothing to ask for now, though. The thought just occurred to me when I saw Alexander's Horizontal Accordion. > -Original Message- > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of Rey Bango > Sent: Mond

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Michael E. Carluen
Aha! . thanks Chris. Hmmm. Also, I just noticed the Plugin Note dated June 18th, saying in effect the same thing (for un-official plugins) dooh! _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Christopher Jordan Sent: Monday, July 16, 2007 1:55 PM To:

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Rey Bango
Hi Michael, Its each plugin author's responsibility to submit it to the plugin repo. That way, they can add the proper info about the plugin and update it as needed. With that said, I do my best to keep track of all new plugins and have many downloaded. If you ever find yourself in a bind,

[jQuery] Re: search text, find urls and list

2007-07-16 Thread Karl Swedberg
Hi Hugh, You might want to use the .each() method for this so you can iterate through the links and create new elements as you go. Something like this should work: var $extLinks; $("#content a").not("[EMAIL PROTECTED]'mysite.com/']").each(function(index) { if (index == 0) { $extLinks =

[jQuery] Problem with jQuery.fix in event model

2007-07-16 Thread Jeffrey Kretz
I am trying an integration of Ext and jQuery for a new project. In doing a simple demo page, I've run into a problem whereby the jQuery.fix method for events is firing on a mousemove before the DOM is loaded. Sample page at: http://dev.scorpiondesign.com/Clients/Test.htm Tested in IE7 (not su

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Glen Lipka
Nice. On FF, I noticed that the hover-image made the whole thing disappear if you moused over too soon. Consider using a sprite image (both on and off in the same image and move the background-position, rather than 2 images). Also, I'm a huge fan of the easing plugin. Using one of the easing meth

[jQuery] Re: Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Christopher Jordan
Michael, I might be wrong, but I believe that unless it's an "official" plug-in, that it's the plug-in author's responsibility to update the plug-ins page with a link to download, examples, etc. Chris On 7/16/07, Michael E. Carluen <[EMAIL PROTECTED]> wrote: Hello everyone. I have always

[jQuery] Re: load method nor getting new data on IE7

2007-07-16 Thread Richard D. Worth
Here's one way: ... .load("getquote.php", { nocache:Math.random() }); ... - Richard On 7/16/07, Rick Pasotto <[EMAIL PROTECTED]> wrote: The following function works as it's supposed to on FF but IE7 is evidently caching the results because I always get the same quotation back. How can I forc

[jQuery] Plugin Annoucements and Additions to Plugin Library

2007-07-16 Thread Michael E. Carluen
Hello everyone. I have always (wrongfully?) assumed that all the plugins announced on the list, gets added to the plugin library by Rey or someone from the evangelism team. That is why I never bookmark the author's plugin sites thinking that I can just find it on the library page of the site w

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-16 Thread Christopher Jordan
I knew they existed. Check out the selectors document and search for E.warning and E#myid. I just knew they were there somewhere. My eye skipped over them the fist time through as well. :o) http://docs.jquery.com/DOM/Traversing/Selectors#A_Short_Preliminary_Note Hope this helps, Chris On 7/16

[jQuery] syntax errors in jquery-1.1.3.1.js

2007-07-16 Thread Rick Pasotto
I'm fairly new to javascript so this may or may not be important. One of the posts today led me to the jslint.js program. Running it with rhino on jquery-1.1.3.1.js reports many, many errors. It quit at line 275 complaining of 'too many errors'. Most of the errors were (caused by) missing semicol

[jQuery] load method nor getting new data on IE7

2007-07-16 Thread Rick Pasotto
The following function works as it's supposed to on FF but IE7 is evidently caching the results because I always get the same quotation back. How can I force IE7 to do what I tell it to? $(function() {$("#quote").click(function(){ $(this).fadeOut(); $(this).load("getquote.php"); $(th

[jQuery] Re: jQuery form plugin questions

2007-07-16 Thread Chris
Any ideas? On Jul 15, 12:07 pm, Chris <[EMAIL PROTECTED]> wrote: > Thank you for the reply mike! I added this to my script: > $(document).ready(function() { > // bind 'myForm' and provide a simple callback function > $('#myForm').ajaxForm(function() {

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-16 Thread Christopher Jordan
Select By ID $("#MyID"); Select By Class $(".myClass"); # indicates an ID while . indicates a class. It's documented somewhere, I just know it. On 7/16/07, Bil Corry <[EMAIL PROTECTED]> wrote: Richard D. Worth wrote on 7/14/2007 8:06 AM: > Just a few to start with. Please add any questions

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Tane Piper
Very Nice! This has given me a great idea for my interface in my application - I was looking for inspiration. Can't wait to give it a go. On 7/16/07, Alexander Graef <[EMAIL PROTECTED]> wrote: Since the introduction of the blade interface on XBOX360, I have been looking for a simple way t

[jQuery] Re: CSS drop-shadow for clueTip - help requested

2007-07-16 Thread Brandon Aaron
Hah! Very true. It can produce a lot of divs. :) -- Brandon Aaron On 7/16/07, Glen Lipka <[EMAIL PROTECTED]> wrote: Great minds...something something. That gradient plugin is neat, but, my goodness, its like I exploded a bomb packed with DIVs instead of shrapnel!. :) Glen On 7/16/07, Brando

[jQuery] Re: CSS drop-shadow for clueTip - help requested

2007-07-16 Thread Karl Swedberg
yeah, but it gets the job done, and it's not like you have all those DIVs in the HTML. Jonathan and I used the same technique for a fade technique in the Learning jQuery book. Not sure why I didn't think of doing something similar for this. I guess I was fixated on getting a single png bac

[jQuery] Re: Frequently Asked Questions (FAQ)

2007-07-16 Thread Bil Corry
Richard D. Worth wrote on 7/14/2007 8:06 AM: Just a few to start with. Please add any questions you've seen come up a lot. Two questions I had when starting with jQuery, and glancing through the API docs, I still don't see them documented (maybe in a tutorial?): (1) How do you select an ele

[jQuery] AW: [jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexander Graef
rtalZINE(R) - all about development > > http://dev.portalzine.de > > > > pro.portalZINE(R) - customized experience > > http://pro.portalzine.de > > > -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com __ NOD32 2400 (20070716) Information __ This message was checked by NOD32 antivirus system. http://www.eset.com

[jQuery] Re: ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Rey Bango
Hi Alexander, That looks really cool. There is some quirkiness to it upon initial load. The behaviors I've seen are: 1) It appears that there is one big image file that initially renders to setup the accordian. This is showing up initially and looks a bit strange. You can see a video of it

[jQuery] tablesorter 2.0 - Shiny Brand new documentation!

2007-07-16 Thread Christian Bach
Hi List, After many late night i have managed to sort out a documentation/FAQ, for the new 2.0 release. I hope to have included the most common questions/problems + showing off the new features, but i might have missed some, so any feedback on this would be great! The new documentation is locat

[jQuery] ANNOUNCE: Horizontal Accordion

2007-07-16 Thread Alexander Graef
Since the introduction of the blade interface on XBOX360, I have been looking for a simple way to accomplish this with javascript and css. Last week I decided to give it a try myself. As I am working actively with jQuery since its introduction, it was my library of choice. Using jQuery and s

[jQuery] jQuery Logo

2007-07-16 Thread Casey Wise
Does anyone have the jQuery logo as a vector graphic? I gotta give props to John R. and his boyz on my next site and am sticking a logo somewhere on the page. I like to avoid working from working from bitmaps whenever possible. On a sidenote, I realized just now that the Devo "hemlet" has 4 tie

[jQuery] search text, find urls and list

2007-07-16 Thread Hugh Hayes
Hi All- This is a newbie designer question. I think jquery's great and I'm trying to find more uses for it. I've got this- $("#content a").not("[EMAIL PROTECTED]'mysite.com/']").clone().appendTo("#content"); I was trying to get a line break in between each link but couldn't and I was hoping

[jQuery] Re: Binding events to elements created by a plugin, from within the plugin.

2007-07-16 Thread jason
D'oh! Never mind, the light bulb finally came on. - jason On Jul 16, 2:18 pm, jason <[EMAIL PROTECTED]> wrote: > I am moving some code into a plugin and am stuck on something that is > probably very simple. > > My plugin creates new DOM nodes, but once they are created I need to > bind events

[jQuery] Binding events to elements created by a plugin, from within the plugin.

2007-07-16 Thread jason
I am moving some code into a plugin and am stuck on something that is probably very simple. My plugin creates new DOM nodes, but once they are created I need to bind events to them. I'm not seeing an obvious way to do the binding from within the plugin itself. I'd like to just do this: $('foo').

[jQuery] Re: Moving the COLUMNS of a table around

2007-07-16 Thread John Farrar
OK... how about a complete working code example? Looks very cool and I am interested. John Farrar

[jQuery] Re: Getting user agent stats with jQuery...

2007-07-16 Thread Felix Geisendörfer
Alternately, does anyone know of some reliable piece of software which does this same sort of thing, but maybe cheaper? Google Analytics - it's free. -- Felix -- My Blog: http://www.thinkingphp.org My Business: http://www.fg-webdesign.de Andy Matthews wrote:

[jQuery] Re: Getting user agent stats with jQuery...

2007-07-16 Thread Felix Geisendörfer
We wouldn't use it in "real-time" but we would need to be able to store that data ourselves and not just access it via their interface. You can aggregate and store it yourself. I wrote some code a while back that does that (it's for the CakePHP framework but could be decoupled from it or altern

[jQuery] Re: CSS drop-shadow for clueTip - help requested

2007-07-16 Thread Glen Lipka
Great minds...something something. That gradient plugin is neat, but, my goodness, its like I exploded a bomb packed with DIVs instead of shrapnel!. :) Glen On 7/16/07, Brandon Aaron <[EMAIL PROTECTED]> wrote: Heh ... I'm secretly working on a shadow plugin that does just this ... although no

[jQuery] Re: .css("border-color") returning undefined

2007-07-16 Thread jazzle
Are you sure? The backgroundColor is returned okay... george.gsgd wrote: > > $('#animationbox').css('borderColor') looks at the style property of the > object not the css in the document, so if it's only in your css you get no > value. > ... > -- View this message in context: http://www.na

[jQuery] Re: CSS drop-shadow for clueTip - help requested

2007-07-16 Thread Brandon Aaron
Heh ... I'm secretly working on a shadow plugin that does just this ... although not a secret anymore. It would be a follow up to my gradient plugin. No timeline on when I'll get it done though ... looks like I'll have some time this week ... so maybe this week or maybe next month. :) -- Brandon

[jQuery] Re: Getting user agent stats with jQuery...

2007-07-16 Thread Andy Matthews
We wouldn't use it in "real-time" but we would need to be able to store that data ourselves and not just access it via their interface. Is that still possible? _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Aaron Porter Sent: Monday, July 16, 2007 12:04 PM To:

[jQuery] Re: news ticker not displaying inline with H2 tag

2007-07-16 Thread Marshall Salinger
The ul tag is also block level, so you could add float:left; to the h2 to bring the ul up to the right of it. -Marshall [EMAIL PROTECTED] wrote: I'm trying to get the texotela news ticker ( http://www.texotela.co.uk/code/jquery/newsticker/ ) to display inline with an h2 tag. I have my h2 t

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Geoffrey Knutzen
A couple of weeks ago, I attended a talk by Steve Souders http://stevesouders.com/ He is "Chief Performance Yahoo!" He has a new book coming out about performance on the web. One of his points was to include Javascript at the bottom of the page. But even he admitted that this is not practical in

[jQuery] Re: Getting user agent stats with jQuery...

2007-07-16 Thread Aaron Porter
If you are only interested in storing the data (not using it real time) you may want to look into google analytics. http://www.google.com/analytics/ It has lots of info including browser type and version, operating system, screen resolution, colors, flash version, java version, and lots more.

[jQuery] onclick ?

2007-07-16 Thread [EMAIL PROTECTED]
Hi everybody, I'm new to Jquery and iI'm just looking for a little tip. Well, i'm trying to call JQueryBlockUI trough flash, and to do that I need to have a JS function like function test2() { question=document.getElementById('question'); jQuery.blockUI(question,{ width: '430px', h

[jQuery] news ticker not displaying inline with H2 tag

2007-07-16 Thread [EMAIL PROTECTED]
I'm trying to get the texotela news ticker ( http://www.texotela.co.uk/code/jquery/newsticker/ ) to display inline with an h2 tag. I have my h2 tag set to display:inline but the ticker still drops down. Anyone have any ideas on how to fix this? Here's my current file: http://echolux.net/ticke

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Fil
This is a good page on optimzing javascript for speed... http://betterexplained.com/articles/speed-up-your-javascript-load-time/ This part of the text seems contradictory with jQuery's habits. Why do we load jQuery.js and all its plugins in the section? (answer: to have .ready()). But should

[jQuery] Getting user agent stats with jQuery...

2007-07-16 Thread Andy Matthews
My company currently uses a product called BrowserHawk, a combination of Javascript and Java files, to get a set of user data which we then store in our database. Currently this data set includes Flash player version, OS, Browser (and version), Screen Res, and more. The drawback is that this softwa

[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Stephan Beal
On Jul 16, 5:17 pm, "Armand Datema" <[EMAIL PROTECTED]> wrote: > yeah that is an option but i need a different bullet for each item You still haven't given us much info to work with. Do you need a specific number of bullets or an unpredictable/arbitrary number? If you can generate the code on the

[jQuery] Re: dev tip: combining JS script files

2007-07-16 Thread Terry B
This is a good page on optimzing javascript for speed... http://betterexplained.com/articles/speed-up-your-javascript-load-time/

[jQuery] Re: Site Offline?

2007-07-16 Thread Felix Geisendörfer
> I have over 1000 emails a day frequently... and then there are RSS > feeds. I don't read them all. Wasn't trying to be smart, don't flame > someone until they earn it. :) You should forward most of that to people who actually have the time to read that many emails and are chronically depressed

[jQuery] Re: Moving the COLUMNS of a table around

2007-07-16 Thread G[N]Urpreet Singh
Yes, worked bro... Thanks... g On 7/16/07, Richard D. Worth <[EMAIL PROTECTED]> wrote: > > Try this: > > var aLeft = $(document.createElement('a')).attr('href', > '#').html('<').addClass('aLeft'); > var aRight = $(document.createElement('a')).attr('href', > '#').html('>').addClass('aRight'); > $('

[jQuery] Re: Tabs plugin in floated container

2007-07-16 Thread Rob Desbois
Aha, the solution failed in IE6 though! (Including your test page). A quick play shows the floating #sidebar and #content right instead of left, and putting #content before #sidebar in the source to fix the problem. I daren't go near Opera/Safari now ;-) --rob On 7/16/07, Rob Desbois <[EMAIL PR

[jQuery] Re: CSS drop-shadow for clueTip - help requested

2007-07-16 Thread Glen Lipka
I guess the first one could have been done with a div that was background-color: black; and then set the opacity to 0.5 or whatever. No need for a png in that. A very common use case is just the 3px feather fade. Its not very big, just 3px in width. I think the first one, if you dynamically mak

[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Armand Datema
Hi yeah that is an option but i need a different bullet for each item Armand On 7/16/07, Klaus Hartl <[EMAIL PROTECTED]> wrote: Armand Datema wrote: > > Hi > > Yeah I agree on that but i can do it either returned from back end > code or with a javascript. > > http://itbuzz.howardshome.com/ >

[jQuery] Re: Site Offline?

2007-07-16 Thread Rey Bango
Oh please John. You know I was joking. Lighten up man. Rey... John Farrar wrote: Rey, I have over 1000 emails a day frequently... and then there are RSS feeds. I don't read them all. Wasn't trying to be smart, don't flame someone until they earn it. :) John Rey Bango wrote: Smartass!

[jQuery] Re: Site Offline?

2007-07-16 Thread John Resig
The site is back up! On 7/16/07, John Farrar <[EMAIL PROTECTED]> wrote: Rey, I have over 1000 emails a day frequently... and then there are RSS feeds. I don't read them all. Wasn't trying to be smart, don't flame someone until they earn it. :) John Rey Bango wrote: > > Smartass! ;) > > Let

[jQuery] Re: Site Offline?

2007-07-16 Thread John Farrar
Rey, I have over 1000 emails a day frequently... and then there are RSS feeds. I don't read them all. Wasn't trying to be smart, don't flame someone until they earn it. :) John Rey Bango wrote: Smartass! ;) Let me see whats up. Rey... John Farrar wrote: Did I miss an announcement tha

[jQuery] Re: ContextMenu plugin r2 released!

2007-07-16 Thread voltron
Can one use this plugin with Jörns TreeMenu?( http://bassistance.de/jquery-plugins/jquery-plugin-treeview/)? Thanks On Jul 16, 3:32 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Come to think of it, Dan, that's exactly what was going on. Excellent > deduction! > > --Karl > _

[jQuery] Re: Site Offline?

2007-07-16 Thread John Resig
I'm running some fixes on the database so I had to take the site down real quick - it should be back up again soon. --John On 7/16/07, John Farrar <[EMAIL PROTECTED]> wrote: Did I miss an announcement that jQuery.com would be down this morning?

[jQuery] Re: Site Offline?

2007-07-16 Thread Rey Bango
Smartass! ;) Let me see whats up. Rey... John Farrar wrote: Did I miss an announcement that jQuery.com would be down this morning? -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com

[jQuery] Site Offline?

2007-07-16 Thread John Farrar
Did I miss an announcement that jQuery.com would be down this morning?

[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Klaus Hartl
Armand Datema wrote: Hi Yeah I agree on that but i can do it either returned from back end code or with a javascript. http://itbuzz.howardshome.com/ right now I have it with classes in the css as well as html. The best option would be an ordered list but with image bullet instead of numbers.

[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Armand Datema
Hi Yeah I agree on that but i can do it either returned from back end code or with a javascript. http://itbuzz.howardshome.com/ right now I have it with classes in the css as well as html. The best option would be an ordered list but with image bullet instead of numbers. Armand On 7/16/07,

[jQuery] Re: unordered list each li a different background

2007-07-16 Thread Stephan Beal
On Jul 16, 4:14 pm, Klaus Hartl <[EMAIL PROTECTED]> wrote: > Hm, in my opinion it is better to keep the three layers structure > (HTML), presentation (CSS) and behavior (JS) as separated as possible. That's certainly true, but creating an arbitrary number of classes for different row colors could

[jQuery] Re: .css("border-color") returning undefined

2007-07-16 Thread george.gsgd
$('#animationbox').css('borderColor') looks at the style property of the object not the css in the document, so if it's only in your css you get no value. To get your desired effect you either need to initialise it with javascript $('#animationbox').css('borderColor' '#444') or set it specificall

[jQuery] Re: How do you delay for a few seconds

2007-07-16 Thread Klaus Hartl
Andy Matthews wrote: I think a pause method would be of great use. I looked for this very thing time and time again. It would be nice to have it available. Here's a one liner: jQuery.fn.pause = function(ms) { return this.animate({ opacity: 1 }, ms); }; I know I know, it's still not in the c

  1   2   >