[jQuery] problem with mootools like top navigation

2007-02-02 Thread Sharandeep Brar
Hello Everybody, It's my first post here. I've been using jquery for some time now but new to interface and don't have much deep knowledge of javascript. So just playing with interface, what i was trying to do is to make a menu like http://mootools.net. I'm talking about the top menu

[jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Brice Burgess
I have released jqModal revision 4 with some drastic changes and substantial improvements. Changes include; * Architecture switch - Plugin is now called on window placeholder(s) (instead of triggering link) * Less code, less rigidity - The architecture change allowed me to do away with

[jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
I have a really messy situation...I'll try to keep this short. I'm wondering if there is a way to rewrite the url in the browser bar without refreshing the page. I'm using Jquery/ajax to do something but unless I can rewrite that url I don't think we can do this. I could use an anchor

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Klaus Hartl
Marc Jansen schrieb: Brian Miller schrieb: You know... The folks over at Mootools refer to theirs as Mootorials. These guys develop excellent JavaScript, yet their naming is ... odd. Maybe we should call them jQ-torials? :) IMHO: no. ;-) - Brian Ha, what about jQuerials? --

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Michael Geary
If you change only the hash, it won't reload the page - but it won't create a unique URL for search engines. If you change anything else in the URL, it will reload the page. Changing the hash does get you a URL get people can copy and bookmark. But Google won't see the hash. It really is a case

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread David Gironella
Really good work. I use jqModal on my new project, and i need to change you code to make callbacks Now i think that your code is more clena and less code than me. Giro. -Mensaje original- De: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] En nombre de Brice Burgess Enviado el: viernes, 02

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Nicolas Hoizey
I'm wondering if there is a way to rewrite the url in the browser bar without refreshing the page. You can only modify the anchor (after the #), as it is done by some Ajax and Flash sites. -Nicolas -- Nicolas Brush HOIZEY Clever Age : http://www.clever-age.com/ Gastero Prod :

Re: [jQuery] Bug in $() in jQuery v1.1.1?

2007-02-02 Thread Stéphane Nahmani
On 30 janv. 07, at 22:27, Jörn Zaefferer wrote: In case you want to test it with your copy of jQuery, modify pushStack to look like this: pushStack: function( a ) { var ret = jQuery(a); ret.prevObject = this; return ret; }, Fwiw, i modified my jquery.js with this, and

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Alexandre Plennevaux
Great work!! I'll try it out today ! Question: is it possible, when modal window is shown, that the browser scrollbar be hidden? For instance, i think it would mean: store the current scroll position, store current body display style value, set document.body.style.overflow=hidden (if it is not),

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Alexandre Plennevaux
Rewriting the url out of pure javascript is not possible: you can only do this on the server siede AFAIK. I haven't tried it myself, but did u check out this Really Simple History framework: http://codinginparadise.org/weblog/2005/09/ajax-how-to-handle-bookmarks-and- back.html -Original

[jQuery] Draggable

2007-02-02 Thread Markus Döbele
Hy jquery users, I found a solution to my last problem. I just call jquery again and set all my div's as draggable again. Step by step I understand more how all this works :-) I have another problem now. I want to create a trash bin. When I drag an item in there and this draggable is set as

[jQuery] on click creating a autocomplete input field

2007-02-02 Thread Ken Saggy
Hi everyone, I have a table with some values and I want to create a affect of a simple inline editor meaning: 1. when the user clicks a cell (only on a TD) a input field would be created in the cell. 2. if the cell has content I want that content to be already inside in the text field (if not

[jQuery] Creating Custom Show/Hide system

2007-02-02 Thread Mark Harwood
Im trying to get my head around jQuery again, this time im wanting to create a simple show hide system. I have a simple UL base menu and a couple of SPANs within a DIV which i wish to show/hide depending on which link is clicked. Im unsure as to the best way of creating a custom function for

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Giuliano Marcangelo
Klaus, how about you doing some tutorials.. MasterKlausses ?? :-) On 02/02/07, Klaus Hartl [EMAIL PROTECTED] wrote: Marc Jansen schrieb: Brian Miller schrieb: You know... The folks over at Mootools refer to theirs as Mootorials. These guys develop excellent JavaScript, yet

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread Alexandre Plennevaux
Did you check slideToggle() in the doc: http://docs.jquery.com/Effects#slideToggle.28_speed.2C_callback_.29 ? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Harwood Sent: vendredi 2 février 2007 13:18 To: discuss@jquery.com Subject: [jQuery]

Re: [jQuery] on click creating a autocomplete input field

2007-02-02 Thread Alexandre Plennevaux
1/ the markup: to each table cell that should behave like that, add a specific class=editable (for example) 2/ the behavior: replace td on click script type=text/javascript $(document).ready(function(){ $(td.editable).click(function(){ startvalue = $(this).text(); $(this).before('input

[jQuery] scroll method problem

2007-02-02 Thread 杨乐
hello, there is a question about scroll method that following below: $(p).scroll( function() { alert(Hello); } ); pHello/p p onscroll=alert('hello')Hello/p but it's not really work when i write code like this: $(body).scroll( function() { alert(Hello); } ); do you know why? -- yorsal

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread David Duymelinck
Mark Harwood schreef: Im trying to get my head around jQuery again, this time im wanting to create a simple show hide system. I have a simple UL base menu and a couple of SPANs within a DIV which i wish to show/hide depending on which link is clicked. Im unsure as to the best way of

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread Mark Harwood
Arrr i see that slideToggle() has a call back function, i assume i could then go and create a function that would look inside my DIV for any none hidden elements and hide them before it shows the requested DIV? Im i correct in thinking this? Alexandre Plennevaux wrote: Did you check

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Thanks, Jquery does have a nice script for doing that as well. I'm trying this out... $(document).ready(function(){ $(a.remote).click(function(){ vari = $(this).attr(name); window.location = vari; alert(vari); return false; }); }); And it does the

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Mike Alsup
Is THIS the dead end? Is there a way to get that anchor in there via javascript? location.hash = 'myAnchor'; ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] problem with mootools like top navigation

2007-02-02 Thread Stefan Petre
Try like this http://interface.eyecon.ro//demos/menu.html 2007/2/2, Sharandeep Brar [EMAIL PROTECTED]: Hello Everybody, It's my first post here. I've been using jquery for some time now but new to interface and don't have much deep knowledge of javascript. So just playing with interface,

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Nice. location.hash is totally broken in Safari. ;( http://warpspire.com/journal/web-production/a-little-rant-on-safari/ On 02 Feb 2007, at 13:56, Mike Alsup wrote: Is THIS the dead end? Is there a way to get that anchor in there via javascript? location.hash = 'myAnchor';

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Mike Alsup
location.hash is totally broken in Safari. ;( Check out the tabs plugin for an example of solving this in Safari. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Mike Alsup
Plugin page; http://dev.iceburg.net/jquery/jqModal/ Brice, this is looking great. Nice work! ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread Mark Harwood
Hmmm there must be a better way then doing it like this; $(document).ready(function() { $(.multi-content-container span).hide(); $(.multi-content-nav li a.test1).click(function() { $(.multi-content-container span).hide();

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Vaska
Sheesh, I've been looking at this...waiting to solve something else before I dove into it. ;) I have another idea...just a gut check here before I try this. Why couldn't I simply rewrite with javascript the urls (in a particular div) from href='page.php?id=12' to href='#12' at page load?

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Klaus Hartl
Vaska schrieb: Sheesh, I've been looking at this...waiting to solve something else before I dove into it. ;) I have another idea...just a gut check here before I try this. Why couldn't I simply rewrite with javascript the urls (in a particular div) from href='page.php?id=12' to

Re: [jQuery] Creating Custom Show/Hide system

2007-02-02 Thread Karl Swedberg
On Feb 2, 2007, at 7:39 AM, Mark Harwood wrote: Arrr i see that slideToggle() has a call back function, i assume i could then go and create a function that would look inside my DIV for any none hidden elements and hide them before it shows the requested DIV? Im i correct in thinking this?

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Andy Matthews
I'd be willing to try my hand at some beginner level stuff. I could gear it towards Coldfusion usage even. _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Thursday, February 01, 2007 5:12 PM To: jQuery Discussion. Subject: Re: [jQuery] ANN: Brandon

Re: [jQuery] on click creating a autocomplete input field

2007-02-02 Thread Ken Saggy
First of all thank you Alexandre ;-) Well, i did almost everything but i did run into one rather big problem i don't know how to solve. When the user clicks the cell, the cell turns into a input field with auto complete features. When pressing escape (or in case the value is the same) the cell

[jQuery] click() - toggle content and change content

2007-02-02 Thread henrik
Hope someone can give me a tips: I am very new to this, and I am trying to change the content in a list element tag after an event has occured, and then change the content back again... First, the p class=theBody is hidden, and when I click SHOW body it is made visible and the content of the

[jQuery] Timer

2007-02-02 Thread Johannes Theile
Hallo, über load() blende ich eine Datei innerhalb einer PHP-Seite ein. Diesen eingebundenen Bereich würde ich gerne alle 30 Sekunden aktualisieren. Gibt es eine Möglichkeit, dies mit jQuery durchzuführen. Danke und Grüße, Johannes -- View this message in context:

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Karl Swedberg
Giuliano, thanks for the appreciation! So far nobody has asked.. Oh, Klaus! I didn't know you were waiting for a personal request! ;-) You should already know how much I appreciate and admire your posts to this list (since I've gushed to you off-list). So, consider this my personal plea

Re: [jQuery] Timer

2007-02-02 Thread Christof Donat
Hi, über load() blende ich eine Datei innerhalb einer PHP-Seite ein. Diesen eingebundenen Bereich würde ich gerne alle 30 Sekunden aktualisieren. Die Mailingliste ist in englisch. Deshalb bitte in Zukunft englisch. Dann können auch diejenigen Antworten, die der deutschen Sprache nicht mächtig

Re: [jQuery] Timer

2007-02-02 Thread Johannes Theile
Hi, Christof Donat wrote: Die Mailingliste ist in englisch. Deshalb bitte in Zukunft englisch. Dann können auch diejenigen Antworten, die der deutschen Sprache nicht mächtig sind. As I had sent my question I realized that I had posted it in German instead in English. Sorry for that.

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Karl Swedberg
Exellent! Thanks, Andy. I'll be sending you and Alex Cook an email off-list as soon as I catch my breath. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Feb 2, 2007, at 9:17 AM, Andy Matthews wrote: I'd be willing to try my hand at some beginner

[jQuery] history/remote question

2007-02-02 Thread Vaska
Nice plugin, but I'm having some questions about implementing it. I'd like ot use an ajax with it, and also the has that exists in the href attribtue. $('a.rewrite').click(function(){ var uri = $(this).attr('href'); // this is working nicely, but no history (back button)

Re: [jQuery] scroll method problem

2007-02-02 Thread John Keyes
Hi Yorsal, This for use with the CSS overflow property[1]. For example: div class=scroll style=height: 80px; width: 100px; overflow: scroll; pPara1/p pPara2/p pPara3/p pPara4/p pPara5/p /div And now you listen for scroll events on that div: $('.scroll').each( function() {

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Alexandre Plennevaux
as a beginner myself, may i suggest a tutorial describing thoroughly what is possible and the limits of chaining? also, how to get the browser available width, height in jquery? _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: vendredi 2 février 2007

Re: [jQuery] Timer

2007-02-02 Thread Johannes Theile
Hi Christof, Christof Donat wrote: $(function() { var loadMyContent = function() { $('loadItHere').load('/content/url.xml'); } setTimeout(loadMyContent,3); loadMyContent(); }) I tried your code from above. But I have a problem with it. When

Re: [jQuery] Timer

2007-02-02 Thread Alexandre Plennevaux
i would suspect your xml file is cached: append some random data next to the uri: myFile= '/content/url.xml'+ New Date.getTime(); $('loadItHere').load(myFile); -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Johannes Theile Sent: vendredi 2 février 2007

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Andy Matthews
Sure sure _ From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Karl Swedberg Sent: Friday, February 02, 2007 9:30 AM To: jQuery Discussion. Subject: Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com Exellent! Thanks, Andy. I'll be sending you and Alex Cook an email

Re: [jQuery] Timer

2007-02-02 Thread Klaus Hartl
Johannes Theile schrieb: Hi Christof, Christof Donat wrote: $(function() { var loadMyContent = function() { $('loadItHere').load('/content/url.xml'); } setTimeout(loadMyContent,3); loadMyContent(); }) I tried your code from above. But I have a

Re: [jQuery] history/remote question

2007-02-02 Thread Klaus Hartl
Vaska schrieb: Nice plugin, but I'm having some questions about implementing it. I'd like ot use an ajax with it, and also the has that exists in the href attribtue. $('a.rewrite').click(function(){ var uri = $(this).attr('href'); // this is working nicely, but no

[jQuery] forms and thickbox

2007-02-02 Thread Tom Shafer
Message: 15 Date: Thu, 1 Feb 2007 14:58:47 -0500 From: Tom Shafer [EMAIL PROTECTED] Subject: [jQuery] thickbox and forms.js To: discuss@jquery.com Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed HI, I am taking the thickbox plugin cody

Re: [jQuery] Timer

2007-02-02 Thread Christof Donat
Hi, Christof Donat wrote: $(function() { var loadMyContent = function() { $('loadItHere').load('/content/url.xml'); } setTimeout(loadMyContent,3); loadMyContent(); }) I tried your code from above. But I have a problem with it. When the page loads,

[jQuery] jQuery 1.1.1 Question : type mis-match

2007-02-02 Thread Jeffrey McClure
I'm in the process of upgrading my code to use the latest API and get a type mis-match error in IE on this code from jQuery.js: else { name = name.replace(/-([a-z])/ig,function(z,b){return b.toUpperCase();}); if ( value != undefined ) elem[name] =

Re: [jQuery] history/remote question

2007-02-02 Thread Vaska
No, it's not. I did the worst job trying to explain in that previous email - english really is my native language! First of all, I get 'remote-4' in the address bar when I click a link - I believe this is what history/remote does. My link will look like this... a

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Brandon Aaron
To get the browser's window width and height you just need the dimensions plugin found in SVN. It extends the core .height() and .width() methods to work with window and document in addition to HTML elements. So if you wanted to get the browser's window available width and height you can do it

[jQuery] Interesting plugin idea if anyone is interested for jquery

2007-02-02 Thread Stephen Woodbridge
http://www.solutoire.com/plotr ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] Plugin Code Review: jdMenu

2007-02-02 Thread Jonathan Sharp
I'm just starting on a refactor of this code and am making several improvements including accepting settings when initializing, handling events through delegation, replacing the iframe code with bgiframe and supporting vertical menus. So before I undergo this refactor. There have been several

Re: [jQuery] Interesting plugin idea if anyone is interested for jquery

2007-02-02 Thread Alexandre Plennevaux
Woow, nice! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stephen Woodbridge Sent: vendredi 2 février 2007 17:37 To: jQuery Discussion. Subject: [jQuery] Interesting plugin idea if anyone is interested for jquery http://www.solutoire.com/plotr

Re: [jQuery] jQuery 1.1.1 Question : type mis-match

2007-02-02 Thread Brandon Aaron
Could possibly post the code that is trying to set the attributes? That else statement you posted is actually used to set style values and if you are just using .attr() and not .css() then the code shouldn't even be in that block. -- Brandon Aaron On 2/2/07, Jeffrey McClure [EMAIL PROTECTED]

Re: [jQuery] history/remote question

2007-02-02 Thread Klaus Hartl
Vaska schrieb: No, it's not. I did the worst job trying to explain in that previous email - english really is my native language! First of all, I get 'remote-4' in the address bar when I click a link - I believe this is what history/remote does. My link will look like this... a

Re: [jQuery] problem with mootools like top navigation

2007-02-02 Thread Alex Cook
Nice demo Stefan... Interface certainly is an impressive package... From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Friday, February 02, 2007 5:10 AM To: jQuery Discussion. Subject: Re: [jQuery] problem with mootools like top

[jQuery] Question on location.hash polling and stripped tables

2007-02-02 Thread Angelo Sozzi
Hi I'm working on an A-Z list implementation and have several questions. Since the list is not VERY long (50kb) I moved away from breaking it up and calling letters using AJAX. Now I load the full tables in one go and just hide the ones not used (most people would hunt through the list anyway).

Re: [jQuery] Animate font weight

2007-02-02 Thread Glen Lipka
You could have 1 span with the text *bold*; display:none, and 1 with the text normal. Then fade 1 out and fade 1 in at the same time. (Positioned right on top of each other) It might look right. Glen On 2/1/07, Karl Rudd [EMAIL PROTECTED] wrote: Technically font-weight can be a number, like

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Glen Lipka
Looking good. What if I had the *interface* plugins in there? Could you leverage resizable and draggable? Also, is it possible to set opacity with FadeTo() so it has a nice vista glass see-through effect? Glen ___ jQuery mailing list

Re: [jQuery] problem with mootools like top navigation

2007-02-02 Thread Stefan Petre
This is not a demo, it's just an example solely based on jQuery, no Interface in there Alex Cook wrote: Nice demo Stefan Interface certainly is an impressive package From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Stefan Petre Sent: Friday,

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Brice Burgess
Alexandre Plennevaux wrote: Great work!! I'll try it out today ! Question: is it possible, when modal window is shown, that the browser scrollbar be hidden? For instance, i think it would mean: store the current scroll position, store current body display style value, set

Re: [jQuery] jQuery 1.1.1 Question : type mis-match

2007-02-02 Thread Jeffrey McClure
Brandon Aaron wrote: Could possibly post the code that is trying to set the attributes? Commenting out this code removes the error... jQuery(document).ready(function(){ jQuery.ImageBox.init( { loaderSRC: '/images/loading.gif',

Re: [jQuery] problem with mootools like top navigation

2007-02-02 Thread Alex Cook
Well shoot, pardon me ;) I just guessed you would do it in Interface, my bad From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Stefan Petre Sent: Friday, February 02, 2007 9:53 AM To: jQuery Discussion. Subject: Re: [jQuery] problem with mootools

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread abba bryant
I second that request. It might increase the value of the tutorial to have it written by someone with Klaus's skills who *isn't* on the development team. His perspective matches the average jquery user more closely. Karl Swedberg-2 wrote: Giuliano, thanks for the appreciation! So far nobody

Re: [jQuery] Question on location.hash polling and stripped tables

2007-02-02 Thread Klaus Hartl
Angelo Sozzi schrieb: Hi I'm working on an A-Z list implementation and have several questions. Since the list is not VERY long (50kb) I moved away from breaking it up and calling letters using AJAX. Now I load the full tables in one go and just hide the ones not used (most people would hunt

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Rey Bango
That'd be awesome Andy! Andy Matthews wrote: I'd be willing to try my hand at some beginner level stuff. I could gear it towards Coldfusion usage even. *From:* [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] *On Behalf

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Kim Johnson
I know you are talking about rewriting the URL once you click on an anchor tag, but FYI in case you weren't aware, you can use mod_rewrite (if your server is running apache) in a .htaccess file to rewrite urls. I've been doing this for years, because indeed, search engines like it better if your

[jQuery] Table sorting alternatives?

2007-02-02 Thread Charles Capps
Either my Google-fu is weak, or the TableSorter plugin appears to be the only game in town for table sorting in jQuery-land: http://motherrussia.polyester.se/jquery-plugins/tablesorter/ Now, don't get me wrong, it works perfectly fine (when not trying to stripe a 1600 row table), but it lacks a

Re: [jQuery] history/remote question

2007-02-02 Thread Klaus Hartl
Vaska schrieb: No, it's not. I did the worst job trying to explain in that previous email - english really is my native language! First of all, I get 'remote-4' in the address bar when I click a link - I believe this is what history/remote does. My link will look like this... a

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread sunsean
Changing the url and using ajax should be done thoughtfully. For example, you if you have separate content, then it would be a good idea to refresh the page. If you are only showing 50 table entries at a time, then ajax/hash would be the best way to go. Remember, people don't hate refreshing for

Re: [jQuery] Table sorting alternatives?

2007-02-02 Thread sunsean
One minor solution is to sort by the second column first, then sort by the first column. As long as the sorts build on each other, this should achieve the same effect. I'm not sure if TableSorter stores the sorted result, or just sorts the original, but it would be an easy fix to your problem.

Re: [jQuery] Table sorting alternatives?

2007-02-02 Thread Charles Capps
sunsean wrote: One minor solution is to sort by the second column first, then sort by the first column. As long as the sorts build on each other, this should achieve the same effect. I'm not sure if TableSorter stores the sorted result, or just sorts the original, but it would be an easy fix

Re: [jQuery] history/remote question

2007-02-02 Thread Klaus Hartl
Vaska schrieb: I don't think I'm following you here...how would the hash (#/project/ things/) get passed via your suggestion? To both the browser address space and to the server so the info could be looked up? The hash is the query key... The 'remote-1' etc., won't do the trick

Re: [jQuery] Embedding jQuery in a Greasemonkey script

2007-02-02 Thread sunsean
Hi all, Nicolas emailed me, and I felt it was somewhat my duty/responsibility to get jQuery to work in greasemonkey again, so here it is! jQuery 1.1.1 -- http://userscripts.org/scripts/show/7373 Also, I encourage you all to check out my google icon script. It's fun =P Google Icon --

Re: [jQuery] jqModal updated - less code, more features.

2007-02-02 Thread Gavin M. Roy
Awesome work, between this and blockUI, I'm going to take down modalContent. Regards, Gavin On 2/2/07, Brice Burgess [EMAIL PROTECTED] wrote: I have released jqModal revision 4 with some drastic changes and substantial improvements. Changes include; * Architecture switch - Plugin is now

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Michael E. Carluen
Cool deal, Andy!! Since the Quickstart Guide to jQuery+CF went up, there's been a steady stream of window shoppers visiting the page. I'm sure that's just evidence of the growing interest from the sizable CF community, 'shopping' for a good javascript library. I know you'll definitely have an

Re: [jQuery] Embedding jQuery in a Greasemonkey script

2007-02-02 Thread Felix Geisendörfer
Hey Sean, Also, I encourage you all to check out my google icon script. It's fun =P Google Icon -- http://userscripts.org/scripts/show/6061 I just tried it out and this is a really awesome script. Seeing the little favicons makes using Google a lot more intuitive ; ). Thanks for writing it!

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Alexandre Plennevaux
another tutorial for beginners would also be some kind of introduction to the terminology. it goes beyond jQuery, but since you use it all the time, it would be nice to define them and exemplify them variable, array, hashes, callbacks, attributes, object, the ideas behind separation of

Re: [jQuery] Question on location.hash polling and stripped tables

2007-02-02 Thread Angelo Sozzi
Klaus, thanks I've looked at the tabs plugin, but id does way too much for the little bit of show and hide I want to do.though I think I've found something that works For now I found that: var hash = location.hash.replace('#', ''); showlist(hash); //function

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Alex Cook
I also can chime in on CF things, tho it's been a bit of time since I've done anything serious with the language... the current place I work at is a PHP only shop so I've been knee-deep in that for a while now... From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [jQuery] Question on location.hash polling and stripped tables

2007-02-02 Thread sunsean
I wrote a history script a long time ago. You might be able to use it as a reference: http://www.sunsean.com/Jistory/ ~Sean ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] problem with mootools like top navigation

2007-02-02 Thread Angelo Sozzi
Yes, nice demo, but it brings up an older problem Move your mouse (semi) fast from item 1 to the right to item 4 (pointer right between item and 4 stay there... won't stop wobbling around (worse if you move over the entire bar from right to left and back again Is there a way to stop

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Rey Bango
Wow, I'm embarrassed to say that I missed the Quickstart Guide to jQuery+CF. Where's the link? Rey.. Michael E. Carluen wrote: Cool deal, Andy!! Since the Quickstart Guide to jQuery+CF went up, there’s been a steady stream of “window shoppers” visiting the page. I’m sure that’s just

Re: [jQuery] Table sorting alternatives?

2007-02-02 Thread Christian Bach
Hi, Actually i have been playing around with two column sorting a while back, the design of the plugin is in fact a bit stupid since it builds strictly around one column sorting (it was originally designed just for speed and the fun of it all). The built in sorting of Arrays in javascript is a

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Michael E. Carluen
Hi there Rey. It can actually be found in the Ajax category of the jQuery tutorial wiki. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rey Bango Sent: Friday, February 02, 2007 12:00 PM To: jQuery Discussion. Subject: Re: [jQuery] ANN: Brandon

Re: [jQuery] ANN: Brandon Aaron Joins learningjquery.com

2007-02-02 Thread Rey Bango
Wow, I cannot believe I missed it. I was just looking at that page yesterday for something else. I guess age is finally catching up with me. :P Rey... Michael E. Carluen wrote: Hi there Rey. It can actually be found in the Ajax category of the jQuery tutorial wiki. -Original

Re: [jQuery] rewriting the browser address (without refresh)?

2007-02-02 Thread Avi Mehta
I dont know if you got a solution or not but some time back I tried to change the url in browser so that user could copy the url and then paste it somewhere else and it would still work. The part relevent to ur needs is changing the url, The URL CAN'T be changed to some other page though you

Re: [jQuery] Proposed selector patch: select by name

2007-02-02 Thread Alex Calara
I don't know if this is related, but the NAME attribute is deprecated in XHTML, being replaced by ID. On Feb 2, 2007, at 1:34 PM, Austin Schutz wrote: The name property is associated with every (or nearly every? are there exceptions?) DOM element. In my code I make extensive use of

[jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread Rey Bango
The jQuery team would like to welcome our newest team members, Yehdua Katz, Nate Cavanaugh, Klaus Hartl. These three developers have made invaluable contributions to the jQuery projects in terms of time, knowledge and commitment to the community. Yehuda is a developer living in New York City

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread John Keyes
Congrats to all three new members, in my short time using jQuery their efforts have been very helpful. -John K On 2/2/07, Rey Bango [EMAIL PROTECTED] wrote: The jQuery team would like to welcome our newest team members, Yehdua Katz, Nate Cavanaugh, Klaus Hartl. These three developers have

[jQuery] Ajax loading page multiple times

2007-02-02 Thread Buckner, Mark
I have a strange problem here, and I can't figure it out. I've got a web page with 2 divs - #menu and #content. When the page loads, it automatically pulls data from another page and loads it into #menu. Here's my script: $(document).ready(function() { function addClickHandlers =

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread sunsean
Well done! I've seen a lot of good things come from you three and the honor is well deserved. ~Sean ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread Rick Faircloth
And, as a recent jQuery convert and newbie, I appreciate all that everyone does, especially the core team, to help all of us become better jQuerians! Rick (PS - My spell check didn't know what to make of jQuerians :o) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]

Re: [jQuery] Introduction to Firebug and jQuery, Screencast

2007-02-02 Thread Austin Schutz
On Fri, Jan 26, 2007 at 08:59:48PM -0500, John Resig wrote: A new screencast is up that takes an introductory look at using the Firebug Firefox Extension and jQuery together - combining the two to build a reusable bookmarklet that can manipulate Digg Posts and Comments. The screencast is

Re: [jQuery] ANNOUNCE: New jQuery Project Team Members

2007-02-02 Thread Austin Schutz
On Fri, Feb 02, 2007 at 04:16:14PM -0500, Rey Bango wrote: The jQuery team would like to welcome our newest team members, Yehdua Katz, Nate Cavanaugh, Klaus Hartl. Congrats gentlemen! Austin ___ jQuery mailing list

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-02 Thread John Resig
Jonathan - Your code is looking good. The only line that looked strange to me was: $(ul).append('/iframe').prepend('iframe style=position: absolute; z-index: -1;'); I think you might be looking for a wrapInner equivalent: http://motherrussia.polyester.se/jquery/wrapinner/ --John On 2/2/07,

[jQuery] ajax start/stop indicators

2007-02-02 Thread Mateusz Misiorny
Hi, I would like to have separate activity indicators for various ajax requests I am making (or none at all for some) and thus I cannot use the global ajaxStart and ajaxStop functions. I was searching the nabble archive and also the source code of jquery and don't seem to find the solution. The

Re: [jQuery] Plugin Code Review: jdMenu

2007-02-02 Thread Jonathan Sharp
On 2/2/07, John Resig [EMAIL PROTECTED] wrote: Jonathan - Your code is looking good. The only line that looked strange to me was: $(ul).append('/iframe').prepend('iframe style=position: absolute; z-index: -1;'); Yep, I implemented that in an attempt to fix an issue with IE and security

Re: [jQuery] Table sorting alternatives?

2007-02-02 Thread Charles Capps
Thank you for the update, Christian. Seeing the official solution have two column sorting would be beautiful, as the rest of the functionality is well done. Christian Bach wrote: Hi, Actually i have been playing around with two column sorting a while back, the design of the plugin is in

[jQuery] SVN request...

2007-02-02 Thread Rich Manalang
John, et al. (committers), Any chance you guys can http enable the svn repository? I use the svn repo quite a bit so I can build custom versions of jQuery at my company. The problem is that I'm VPN'd in all day long and our internal proxy doesn't allow proxying of svn connections. This is a

  1   2   >