[jQuery] Re: $().load() and redirect

2007-05-03 Thread ATom
But this is the same site :-( Original and redirected page is seznamka.sms.cz

[jQuery] Re: $().load() and redirect

2007-05-03 Thread Ⓙⓐⓚⓔ
http://moje.sms.cz vs http://seznamka.sms.cz they may be the same server, but that doesn't count in javascript security. On 5/2/07, ATom [EMAIL PROTECTED] wrote: But this is the same site :-( Original and redirected page is seznamka.sms.cz -- Ⓙⓐⓚⓔ - יעקב ʝǡǩȩ ᎫᎪᏦᎬ

[jQuery] Re: CACHING FORM

2007-05-03 Thread oscar esp
I supose that I could do. On 2 mayo, 22:46, Jörn Zaefferer [EMAIL PROTECTED] wrote: oscar esp schrieb: I am using post with form pluggin. So how about switching to GET? -- Jörn Zaefferer http://bassistance.de

[jQuery] Re: $().load() and redirect

2007-05-03 Thread ATom
So, what must fit redirected page to pass javascript security?

[jQuery] IE lt 6 png hack

2007-05-03 Thread Kush Murod
Hi guys, Every time I had to use png image in IE lt 6 I had to look up old emails. So I decided to put together initial documentation, example and plugin for everybody to use, including for myself. So together we could make it even better, your feedback is appreciated.

[jQuery] Re: $().load() and redirect

2007-05-03 Thread Olaf Bosch
ATom schrieb: Try the same here: http://seznamka.sms.cz/index.php?P_id_kategorie=8202P_soubor=%2Fseznamka%2Fmain.php%3Fimg_num%3D4%26m_xmlform_idg%3Dfotos%26m_ido%3Dpsv%26m_uid%3D13967%26img_oid%3Dview%26d_portal_key%3Dfotogal_13967_89%26d_akce%3Dforum_read%26d_forum_all%3D1 now this is the

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Sam Collett
A bit off topic (apologies for hijacking the topic), but I've noticed that the jQuery version of the page actually has a greater download requirement than YUI (and only slightly less that Prototype). jQuery: 177 KB YUI: 164 KB Prototype+Scriptaculous: 178 KB This could be reduced a little if

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Kush Murod
Sam, Don't know where you are getting numbers from but Core JQuery is ONLY 60kb (uncompressed) Common plugin such as 'form' 31kb (uncompressed) Even combined size is nowhere 100kb, size drops once you compress js --Kush

[jQuery] newbie question: how to set location to a target in a way that is supported by i.e. and safari?

2007-05-03 Thread [EMAIL PROTECTED]
Hi can jquery help with the followng problem? If, in conventional javascript, I have a function goToAnchor(){ href.location=#blah } and call it by body onLoad=goToAnchor() then it works fine in i.e. and firefox but causes safari to endlessly load the page - see

[jQuery] Re: newbie question: how to set location to a target in a way that is supported by i.e. and safari?

2007-05-03 Thread Klaus Hartl
[EMAIL PROTECTED] wrote: Hi can jquery help with the followng problem? If, in conventional javascript, I have a function goToAnchor(){ href.location=#blah } and call it by body onLoad=goToAnchor() then it works fine in i.e. and firefox but causes safari to endlessly load the page - see

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
Hi luc, basically, with the few details you provide, i can only say that you will trigger things using the event change on the select element. From then on, use the select.val() example: $(select#type).change(function(){ if($(this).val()=='root'){

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Luc Pestille
I think it's a bit clearer, but I don't think I want to use .change, because there might not be a change... It's better explained in code; select option value=/option option value=aAe/option option value=bB/option /select div id=a/div div id=b/div div #a and #b are

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Sam Collett
On May 3, 11:08 am, Kush Murod [EMAIL PROTECTED] wrote: Sam, Don't know where you are getting numbers from but Core JQuery is ONLY 60kb (uncompressed) Common plugin such as 'form' 31kb (uncompressed) Even combined size is nowhere 100kb, size drops once you compress js --Kush The size I

[jQuery] Re: checking on project practicality

2007-05-03 Thread abused by speech recognition
that is almost exactly what I was looking for. The major difference is that it doesn't apply comments to regions but instead to blocks of text. not a fatal flaw but one that should be remedied. in any case many thanks for the pointer. next task is to find a project partner to handle the

[jQuery] AJaX Error

2007-05-03 Thread Rob Wilkerson
I don't think this is jQuery specific, but I'm using jQuery and this community is helpful as hell, so I thought I'd post to see whether anyone had any thoughts. I'm making an AJaX call to a PHP page that returns a lot of data in JSON format. 1. The PHP page is doing a lot of work and could

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
this should work, no? you could of course make this much more code efficient by wrapping the switch case in a function. (did not test this code, but you get the idea) $(document).ready(function(){ // onLoad if ($(select#mySelect).is(.selected)){ switch ($(this).val()){ case

[jQuery] Re: IE lt 6 png hack

2007-05-03 Thread Kush Murod
Thanks, I'll be maintaining it as I get feedbacks --Kush [EMAIL PROTECTED] wrote: Nice. Having gone through the same process of looking this up several times over the past few months, this is a welcome solution. * http://khurshid.com/jquery/iepnghack/

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Rey Bango
Holy moly Erik, you're my new best friend! That is great work! The only quirk I see is that in IE7, the main table shoots out to the right when closing a row. Since you have the table set at 50%, I'm wondering if it would do that at a fixed width. I'm going to test it out. Thank you man! Rey

[jQuery] Re: jquery simple star rating plug-in broken?

2007-05-03 Thread Rey Bango
John Resig updated the star rating for v1.1.1 which should also work with v1.1.2. Are you using that version? http://john.jquery.com/plugins/rating/ Rey... nicmae wrote: Hello, I have the same problem. $form.title is not a function. I use jquery 1.1.2. I try with 1.03 and 1.04 and it

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Luc Pestille
The onchange select works, but the onload doesn't =/ Something to do with is(.selected) ? Thanks. if ($(#jobtype_row select).is(.selected)){ switch ($(this).val()){ case 'p': $(#dayrate_row).hide(); $(#salary_row).show(); break; case 'f':

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Alexandre Plennevaux
try instead: if ($(#jobtype_row select).val() !=){ ... _ From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Luc Pestille Sent: jeudi 3 mai 2007 14:50 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Dropdown select value help The onchange select

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Karl Swedberg
These are really cool examples, Erik! I have such a love/hate relationship with iframes that I rarely think to use them. The OP example was a little bit more complex, since the iframe spanned the entire width of the table even through there were multiple columns. Would be cool to see what

[jQuery] Elements opacity doesnt work after fade in effect on IE

2007-05-03 Thread [EMAIL PROTECTED]
Hi, Im using the following script to display a hidden div block once a button is clicked. $(document).ready( function() { $(.channellink).click(function() { var channelId = $(this).attr('id').replace('channellink',''); //Hide div

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Luc Pestille
Nope, it still won't automatically show the div. =/ Any other suggestions? From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Alexandre Plennevaux Sent: 03 May 2007 15:53 To: jquery-en@googlegroups.com Subject: [jQuery] Re: Dropdown select

[jQuery] Mouse drag for textbox in Draggable Panel

2007-05-03 Thread Mahadewa
Hi all, I have a bit of a problem here. I have a draggable panel with a textbox on it. The problem is, if I have a text in the Textbox, I can't 'highlight' it by using the mouse. I suspect this is something to do with the way draggable works. My question is, is there any way to enable this

[jQuery] Re: Autocomplete plugin

2007-05-03 Thread Jeff Fleitz
I thought I had it working, but I don't, I am still having issues. I have two lookups on the same form, and the data is returned fine. data[0] is the text description and data[1] is the primary key of the lookup table. I am trying to pass the values to some hidden fields. I am using the code

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Sam Collett
On May 3, 3:14 pm, Luc Pestille [EMAIL PROTECTED] wrote: Nope, it still won't automatically show the div. =/ Any other suggestions? I think it should be :selected not .selected if ($(select#mySelect).is(:selected)){

[jQuery] Suggestion on authentication form

2007-05-03 Thread Massimiliano Marini
Hi all, someone knows or has realized an authentication form calling a external PHP file for the authentication, in order to remain to the inside of the main page (index.php) All I want realize is this, when I click on submit, I call the login.php file that control user and password. What I must

[jQuery] Re: Dropdown select value help

2007-05-03 Thread Luc Pestille
Nope, that didn't work either. =/ It surely can't be this hard to do? -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Sam Collett Sent: 03 May 2007 15:24 To: jQuery (English) Subject: [jQuery] Re: Dropdown select value help On May 3, 3:14 pm,

[jQuery] Re: jQuery Examples pack

2007-05-03 Thread Kevin Scholl
@Jack, Thanks for the kudos! The jqtabcontrol.js is based on my own original, raw javascript for what I refer to here at work as sliding tabs. Over the past year since I originally wrote it, I've gradually pared down the file size as I've tweaked the code. There isn't really a whole lot of

[jQuery] Re: hi : need help with saving icon

2007-05-03 Thread Scott Sauyet
bingo wrote: I am jquery for now almost 3 months. But, one thing I am not able still figure out. This is more for a user convience. I want to let user know which divs will be updated after certain action. For this, I want to show a spinning wheel on the div that will be updated. But I am not

[jQuery] Re: An idea for a jQuery core addition - Plugin Registering...

2007-05-03 Thread traunic
On May 3, 8:54 am, Christof Donat [EMAIL PROTECTED] wrote: variable names. You can e.g. do that by encouraging people to use Plugin names like java packages, e.g. org.jquery.ajax. Christof Exactly! And furthermore if you use a corresponding directory structure i.e. /jslib/org/jquery/ajax.js

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Rick Faircloth
Using the iframe was a very good way to solve the jumpiness of showing and hiding table rows. I'm just about to implement a calendar using rows with slide down details and this is better than the solution I can up with to make things smooth! Excellent! Rick -Original Message- From:

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Dan G. Switzer, II
Suni, The calendar implementation of Ext (See here http://www.extjs.com/deploy/ext/examples/menu/menus.html, open first menu, choose date) is not working properly with jQuery, but is with YUI and Prototype (you can change the active library from top right). Changing the calendar months from the

[jQuery] Re: Bug in jQuery implementation of EXT, works with other libraries.

2007-05-03 Thread Brandon Aaron
Events in the latest SVN are now using addEventListener and attachEvent. -- Brandon Aaron On 5/3/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Suni, The calendar implementation of Ext (See here http://www.extjs.com/deploy/ext/examples/menu/menus.html, open first menu, choose date) is not

[jQuery] Re: An idea for a jQuery core addition - Plugin Registering...

2007-05-03 Thread Christof Donat
Hi, variable names. You can e.g. do that by encouraging people to use Plugin names like java packages, e.g. org.jquery.ajax. Exactly! And furthermore if you use a corresponding directory structure i.e. /jslib/org/jquery/ajax.js then you should eliminate collisions right off the bat.

[jQuery] Re: ANNOUNCE: Another LightBox Option - Interface ImageBox

2007-05-03 Thread Rey Bango
Hi Matthieu. This is really great news. Contact John Resig offlist and he will assign you a SVN account. Rey... [EMAIL PROTECTED] wrote: Hi, i can submit it to SVN. How can i do that ? Matthieu On Apr 24, 9:02 pm, Stefan Petre [EMAIL PROTECTED] wrote: Rey Bango wrote: In searching for

[jQuery] Re: Interface 3d Carousel problems

2007-05-03 Thread jmcclure
Is it possible to make the carousel work when it's being loaded into a div via Ajax? Can you post some code/link? Have you set: var noRotate = false; I have it working here: http://www.activespotlight.com/ *

[jQuery] Reload page

2007-05-03 Thread Massimiliano Marini
Hi all, It is possible to recharge the entire page like a refresh? If yes how? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ It's easier to invent the future than to predict it. -- Alan Kay

[jQuery] Re: Reload page

2007-05-03 Thread Fabyo Guimaraes
location.reload(); 2007/5/3, Massimiliano Marini [EMAIL PROTECTED]: Hi all, It is possible to recharge the entire page like a refresh? If yes how? -- Massimiliano Marini - http://www.linuxtime.it/massimilianomarini/ It's easier to invent the future than to predict it. -- Alan Kay

[jQuery] Re: .load() callback and hide, show DIV problem

2007-05-03 Thread summea
Is there something about using .click with a callback that I don't know? Everytime do a click on a target, the callback is called increasingly multiple times thereafter.

[jQuery] Can a list be sortable and droppable at the same time (with Interface)?

2007-05-03 Thread real
Hi, I have an unordered list that needs to be sortable, but also droppable. I'm using the Interface plugin, but whenever I make one UL both droppable and sortable, it doesn't function properly. Either that, or is there a way to have the same functionality as the onDrop callback (for

[jQuery] Re: Can a list be sortable and droppable at the same time (with Interface)?

2007-05-03 Thread real
Or actually, would there just be a way for the following functionality: an item from a sortable is dragged into another list (that's also sortable), but when the dragging stops, instead of the item being *moved* to the new list, can it be copied there instead? On May 3, 3:01 pm, real [EMAIL

[jQuery] Re: SWFObject.js, IE and the onChange handler

2007-05-03 Thread Andy Matthews
Dan... It's only happening in IE 6 7 And even then, not all the time (as I mentioned). It appears that my production code seems to be working correctly. Here's a few URLs for you all to preview: Here's an example of the code (working) on a page with no Flash content:

[jQuery] Re: jQuery Site: EverBank.com

2007-05-03 Thread Rey Bango
Added. Good catch. Jonathan Sharp wrote: Spotted in the wild: http://everbank.com/ -js -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com

[jQuery] ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-03 Thread Rey Bango
Just a quick reminder to everyone that the list of sites using jQuery continues to grow at an amazing rate. Check out the sites at: http://docs.jquery.com/Sites_Using_jQuery Rey...

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Erik Beeson
The OP example was a little bit more complex, since the iframe spanned the entire width of the table even through there were multiple columns. Would be cool to see what you could come up with for a multi-column example. Check out the multicol versions at the same page as before:

[jQuery] JQUERY SELECTOR based on image path

2007-05-03 Thread millionmonkey
Hi folks, This works - but I was wondering if there is a cleaner more jquery way to do the same thing? Perhpas there is a selector that I missed in the docs? $(function() { s = $(img).eq(0).attr(src) if (s.search(images/m)0) { $(img).eq(0).addClass(newimage) } }); tia, George

[jQuery] Re: Pass objects to Ajax Success

2007-05-03 Thread Jeff
I should add that calling the row by name is not an option as the rows do not have unique ids On May 3, 2:50 pm, Jeff [EMAIL PROTECTED] wrote: I have run into a problem. I am attachking a click() event to every row of an inventory table. When the user clicks on the row, it fetches detailed

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-03 Thread Rey Bango
Added. Erik Beeson wrote: A couple more: http://www.mackie.com/products/tracktion3/splash.html http://yoursharade.com/ --Erik On 5/3/07, Rey Bango [EMAIL PROTECTED] wrote: Just a quick reminder to everyone that the list of sites using jQuery continues to grow at an amazing rate. Check

[jQuery] Re: Pass objects to Ajax Success

2007-05-03 Thread Jeff
you are the man! On May 3, 3:25 pm, Jonathan Sharp [EMAIL PROTECTED] wrote: Hi Jeff, You just need to use a closure. Outside your ajax call do $t = $(this); and then you can reference $t inside of your anonymous function. See below... Cheers, -js $(document).ready(function() {

[jQuery] Re: JQUERY SELECTOR based on image path

2007-05-03 Thread millionmonkey
Thanks Aaron and Scott - that works perfectly. And Aaron, thanks for the link - I had looked at that area but didn't connect the dots. This opens up a lot for me. thanks again George On May 3, 3:01 pm, millionmonkey [EMAIL PROTECTED] wrote: Hi folks, This works - but I was wondering if

[jQuery] ThickBox 3

2007-05-03 Thread Shelane Enos
Cody Lindley updated his ThickBox to version 3 yesterday, but I saw no announcement :-( The only thing I didn't see that I was expecting - making the plugin safe for use with other libraries. Of course, I'm hoping Jörn will be done with his autocomplete plugin soon and I can be rid of

[jQuery] Re: ThickBox 3

2007-05-03 Thread Aaron Heimlich
Here's the announcement http://codylindley.com/Webdev/321/thickbox-3 On 5/3/07, Shelane Enos [EMAIL PROTECTED] wrote: Cody Lindley updated his ThickBox to version 3 yesterday, but I saw no announcement :-( The only thing I didn't see that I was expecting - making the plugin safe for use

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-03 Thread Franck Marcia
Hi Rey, You can add http://www.alapage.com as well. You can drag your mouse on any product image or click on diaporama on this kind of pages: http://www.alapage.com/-/Fiche/Imageson/902790... to see jQuery, thickbox, mousewheel, dimensions... in action. Cheers, Franck. On 3 mai, 22:31, Rey

[jQuery] Evaulating script tags when .load-ing HTML

2007-05-03 Thread Sean O
Hi, I'm trying to get IE6/Win to eval javascript returned from .load(). What I have is a function that calls a file: $(#master).load(inc/inc_master_update.php); That PHP script echoes a simple line of JS in a script tag: echo script

[jQuery] Re: ThickBox 3

2007-05-03 Thread Sam Collett
Will this effect the development of thickbox reloaded (http:// stilbuero.de/jquery/thickbox_reloaded/) which is designed to be used more like a plugin (i.e. $(#myimage).thickbox())? On May 3, 10:05 pm, Shelane Enos [EMAIL PROTECTED] wrote: Cody Lindley updated his ThickBox to version 3

[jQuery] I saw it somewhere...

2007-05-03 Thread Shelane Enos
For the last hour I have be scouring through jQuery tutorial and plugins pages trying to find something that I thought I saw. I did a search in the list archive to no avail. I'm looking for an example I saw of a form with input elements with suggestions of what should be placed inside. This

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Andy Matthews
It's called Autocomplete. -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Shelane Enos Sent: Thursday, May 03, 2007 4:32 PM To: jquery-en@googlegroups.com Subject: [jQuery] I saw it somewhere... For the last hour I have be scouring through

[jQuery] Re: Autocomplete plugin

2007-05-03 Thread Jörn Zaefferer
Jeff Fleitz schrieb: That was it! It looks so simple. Thanks, Jörn. Ok, cool. I just received John Resig's Pro JS Techniques book, and plan on going over this oop style js stuff and studying your examples, now that the heat will be off. I haven't yet gotten to read John's book. I hope

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Jörn Zaefferer
Shelane Enos schrieb: For the last hour I have be scouring through jQuery tutorial and plugins pages trying to find something that I thought I saw. I did a search in the list archive to no avail. I'm looking for an example I saw of a form with input elements with suggestions of what should be

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Shelane Enos
Autocomplete isn't what I had in mind. I'm thinking instead of having something in place of a label for the field. In this case, the user is going to upload a document and give the document a title in another input box. I was thinking of saying Enter desired title. I could just do a simple

[jQuery] Re: Evaulating script tags when .load-ing HTML

2007-05-03 Thread summea
This is from the API docs... load( url, params, callback ) Load HTML from a remote file and inject it into the DOM. Note: Avoid using this to load scripts, instead use $.getScript. IE strips script tags when there aren't any other characters in front of it. So you might need to use

[jQuery] .load callback and unwanted .click(s)

2007-05-03 Thread summea
Hi, I have a .click in my callback function... it's getting called more than once each time I click ONLY once. I don't want it to be called on the same click when the callback is fired. Is there any way to prevent .click from being fired multiple times in relation to a callback? Andy On

[jQuery] Thickbox 3 and Jcarousel hack

2007-05-03 Thread paulg
Hi, I'm using jcarousel on a site along with your Thickbox integration, and I love it! I'd like to move up to Thickbox 3.0, but it doesn't work out-of-the-box with Jcarousel. I recall that you said you had to use a hack because Thickbox doesn't work with manipulated dom objects. Is that still

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Erik Beeson
I would assume that only happens when you click the link on the row trigger version, not the link trigger version? Probably because my TR click binding isn't catching the link click event. Easy enough to fix by either also binding the click event to the link, or binding a click event to the link

[jQuery] Re: An idea for a jQuery core addition - Plugin Registering...

2007-05-03 Thread Christof Donat
Hi, In my May 2 2007 11:21 post I mentioned a jQuery port of JSAN making it a plugin to jQuery. the code in that post is the entire contents of the file jqjsan.js which comes out to 1,116 bytes in an uncompressed state. The compressed jsPax is 1,654 bytes. But as you pointed out they are

[jQuery] Re: jQuery Examples pack

2007-05-03 Thread Shelane Enos
I have updated my examples pack. The new page is here: http://education.llnl.gov/jQuery/ When I get the chance, I'm going to look through Kevin's great examples and see what I can add. Thanks, Kevin! [Shelane] On 5/3/07 7:38 AM, Kevin Scholl [EMAIL PROTECTED] wrote: @Jack, Thanks for

[jQuery] Re: ThickBox 3

2007-05-03 Thread Glen Lipka
On 5/3/07, Shelane Enos [EMAIL PROTECTED] wrote: Cody Lindley updated his ThickBox to version 3 yesterday, but I saw no announcement :-( The only thing I didn't see that I was expecting - making the plugin safe for use with other libraries. Of course, I'm hoping Jörn will be done with his

[jQuery] HTML Node

2007-05-03 Thread Glen Lipka
Can jQuery access the HTML node and add a class to it? Is this invalid XHTML? How does straight JS get the HTML node? Glen

[jQuery] Re: Dropdown div functionality

2007-05-03 Thread Karl Swedberg
Looks excellent in FF2 Mac! Great work, Erik! --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On May 3, 2007, at 3:55 PM, Erik Beeson wrote: The OP example was a little bit more complex, since the iframe spanned the entire width of the table even

[jQuery] Re: I saw it somewhere...

2007-05-03 Thread Shelane Enos
Ahaahhaah! That was the very thing I was thinking of. Thank you very much. On 5/3/07 7:08 PM, Scott Sauyet [EMAIL PROTECTED] wrote: Shelane Enos wrote: For the last hour I have be scouring through jQuery tutorial and plugins pages trying to find something that I thought I saw. I did a

[jQuery] spam-free accessible forms

2007-05-03 Thread Shelane
Anyone using CAPTCHAs on their forms? Well stop it! Stop it, I say! A few months back I discovered that our plasma dictionary entries were being spammed. Fortunately all submissions to that extremely technical and scientific dictionary are screened. But it did mean our screener was being

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-03 Thread Kevin Scholl
I'd posted this at the tail end of the last such thread, but it's well down the list now. A small site I designed and developed, launched last week: http://www.shoshintech.com/ Uses jQuery for the navigation, adding the Print this page link next to the breadcrumb (since it relies on

[jQuery] Re: history/remote plugin, initialization callback doesn't work?

2007-05-03 Thread Canglan
Anyone got any ideas? :/