[jQuery] Re: Shadowbox and ajax-returned content - solved

2008-01-29 Thread Bruce MacKay
... by reading Michael's docs a little more closely. Into the document.ready block Shadowbox.init({ skipSetup: true, // skip the automatic setup }); Into the getNextPage function Shadowbox.setup($('a.sbox'),{overlayOpacity: 0.8}); Apologies for not doing my

[jQuery] |Plugin| $('a').favicon()

2008-01-29 Thread R. Rajesh Jeba Anbiah
Just thought of sharing this snippet that adds favicon next to the selected links: /** * favicon - jQuery plugin for adding favicons next to the links * To automate: * a[href ^="http://jquery.com";] { * background: url(http://jquery.com/favicon.ico) center right no- repeat; * pa

[jQuery] Re: JQuery Size > YUI Compressor & mod_deflate/GZIP

2008-01-29 Thread Joel Birch
Perfect. Thanks John!

[jQuery] Re: need menu plugin recommendation

2008-01-29 Thread Jack Killpatrick
Thanks Joel. If nothing else comes up I might fiddle with that approach. - Jack Joel Birch wrote: I suppose you could add position:relative to the parent li element so that their submenu uls are positioned under them, then adjust each submenu ul's left:-whatever value to pull them back left a

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Bill Orcutt
Thanks for the useful feedback on the site. I've added another download link and will implement some of the other suggestions as I find time. I hope once you've had a chance to have a look at the program, you'll consider joining the user group- http://groups.google.com/group/lily-users. -Bill O

[jQuery] Re: accordion problem in IE

2008-01-29 Thread Muhammad Mohsin
thnx jorn i changed few things i change the heights attribute as ie is giving javascript error when height is in negative. i m using ul navigation

[jQuery] Re: Radio Buttons and .val()

2008-01-29 Thread Timothee Groleau
On Tue, 2008-01-29 at 19:58 -0800, biodesign wrote: > Actually you have to use following: > > var var_name = $("[EMAIL PROTECTED]:checked").val(); As of jQuery 1.2, the '@' is no longer necessary to match attributes; see: > > > On Jan 23, 11:35 am, Timothee Groleau <[EMAIL PROTECTED]> > wr

[jQuery] Re: Radio Buttons and .val()

2008-01-29 Thread biodesign
Actually you have to use following: var var_name = $("[EMAIL PROTECTED]:checked").val(); On Jan 23, 11:35 am, Timothee Groleau <[EMAIL PROTECTED]> wrote: > Hi Matt, > > On Wed, 2008-01-23 at 03:22 -0600, Matt Quackenbush wrote: > > Hello, > > > I am using the following to grab the value of a ra

[jQuery] Re: File inputs

2008-01-29 Thread Steffan A. Cline
on 1/29/08 7:58 PM, Hamish Campbell at [EMAIL PROTECTED] wrote: > > Some code would be useful - you've said that .click() doesn't work in > FF, but it probably isn't the .click() bit that isn't working. > > One suggestion (untested) is that you include both the normal button > and the new image

[jQuery] Re: Shadowbox and ajax-returned content?

2008-01-29 Thread Bruce MacKay
At 04:59 p.m. 30/01/2008, you wrote: Any idea/suggestion to allow me to achieve what I'm seeking here? Can you post a demo link? That would be most helpful. Sorry, I cannot do that for a couple of days. Could we try it this way... The following code retrieves new content into an existing pa

[jQuery] Re: Shadowbox and ajax-returned content?

2008-01-29 Thread Mike Alsup
> > Any idea/suggestion to allow me to achieve what I'm seeking here? > Can you post a demo link? That would be most helpful.

[jQuery] Re: Not Submit [validate]

2008-01-29 Thread Marcos Aurélio
Ok, see: Join http://www.animeschool.com.br/example/. First test: Put in login "AAA" and name "bbb" click the button and submit it. Second test: First click the button. He acknowledge the mistakes, all ok. Now fill in the fields with "AAA" and "bbb" and click the button. He did not submit. ---

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-29 Thread Hamish Campbell
Wow, that is awesome. Thanks! On Jan 5, 2:08 pm, Chris Charlton <[EMAIL PROTECTED]> wrote: > BETA:http://xtnd.us/download/dreamweaver/jquery/ > > Works with Dreamweaver MX (6), 7, 8, and CS3 (9). Provides the jQuery > API via code hints and snippets in Dreamweaver's code view. > > Please send me

[jQuery] Re: Using ScrollTo to Scroll to DIV and center it in thw window

2008-01-29 Thread Keith
the idea is to have the entire window scroll and have a menu inside each div that you scroll to. can anyone help out? On Jan 28, 3:17 pm, Ariel Flesler <[EMAIL PROTECTED]> wrote: > Do you need to scroll the whole window ? > Can't you have a fixed menu and you only scroll the content ? > > Ariel

[jQuery] Re: File inputs

2008-01-29 Thread Hamish Campbell
Actually, I just went a re-read the thread and I have NO idea what it is you're trying to achieve. On Jan 30, 8:01 am, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote: > on 1/29/08 11:57 AM, Mika Tuupola at [EMAIL PROTECTED] wrote: > > > > > > > > > On Jan 29, 2008, at 7:08 PM, Steffan A. Cline wrot

[jQuery] Re: File inputs

2008-01-29 Thread Hamish Campbell
Some code would be useful - you've said that .click() doesn't work in FF, but it probably isn't the .click() bit that isn't working. One suggestion (untested) is that you include both the normal button and the new image, but hide the image with CSS by default. This means that if JS is disabled, t

[jQuery] Re: JQuery Size > YUI Compressor & mod_deflate/GZIP

2008-01-29 Thread John Resig
All this info - and more - can be found here: http://jst.pbwiki.com/summary.php --John On Jan 29, 2008 5:38 PM, Geoff Millikan <[EMAIL PROTECTED]> wrote: > > Good point! > > So what's the benchmark on Jquery script execution time using a YUI > Compressed script versus packed jquery-1.2.2.pack.js

[jQuery] Re: JQuery Size > YUI Compressor & mod_deflate/GZIP

2008-01-29 Thread Joel Birch
Haha, you cracked me up :) I'm not sure of the figures for processing the packed version, however this would need to be done for every page of your site that the user visits because the JS is cached in packed form. This means that whatever the overhead is for unpacking the packed version, the del

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Richard D. Worth
You could take it a step further and encode that binary (string of 1s and 0s) as a decimal, and store that. Cool. function b2d(b) { return parseInt(b, 2); } function d2b(d) { return d.toString(2); } - Richard On Jan 29, 2008 6:49 PM, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > > Karl Swedb

[jQuery] Re: need menu plugin recommendation

2008-01-29 Thread Joel Birch
I suppose you could add position:relative to the parent li element so that their submenu uls are positioned under them, then adjust each submenu ul's left:-whatever value to pull them back left a bit. Sounds fiddly as you would have to fine-tune your CSS whenever the menu items change, but it's an

[jQuery] Re: need menu plugin recommendation

2008-01-29 Thread Jack Killpatrick
Hi, The problem with that example is that it doesn't do #3 in my list below. Maybe there's a way, just not an example? Thx, Jack slooodge wrote: Hi, I would definitely recommend superfish (http://users.tpg.com.au/ j_birch/plugins/superfish/all-horizontal-example/). give each and individual

[jQuery] Re: Masked Input Optional Characters

2008-01-29 Thread Sean Catchpole
Jason, Based on your response I would recommend allowing the user to enter either format using the watermark plugin to suggest the format of the input, then if they enter it lazily (ex: Month 9) when they tab out of the input box, correct their format. The reduces any server side validation and gi

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Sean Catchpole
Excellent app. Visual programming is a lot of fun and great for creating quick mashups and data analysis. Is there a way to separate the "visual code" and the results it produces? ~Sean

[jQuery] Multimedia helper 4u

2008-01-29 Thread Sriraj Thankaraja
MULTIMEDIA HELPER 4 U GFXVoid now running on vBulletin forum software By DJRajan It took a bit too long, but GFXVoid is finall

[jQuery] Re: JQuery Size > YUI Compressor & mod_deflate/GZIP

2008-01-29 Thread Geoff Millikan
Good point! So what's the benchmark on Jquery script execution time using a YUI Compressed script versus packed jquery-1.2.2.pack.js? If the time is significant, then you're right - it probably makes sense to use the larger YUI-Compressed file instead of the smaller packed file. I feel like I'm

[jQuery] Re: Manipulation of objects

2008-01-29 Thread Josh Nathanson
Basically you can do this: $('select').each(function() { $(this).doWhatever() // will run the method doWhatever on the currently iterating select }); -- Josh - Original Message - From: "RyanMC" <[EMAIL PROTECTED]> To: "jQuery (English)" Sent: Tuesday, January 29, 2008 3:38 PM

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-29 Thread Rey Bango
I believe Aptana, which is both standalone and a plugin for eclipse, includes some of these features. Rey Tristan wrote: Does anyone know if a similar thing exists for the eclipse IDE? On Jan 29, 11:45 am, Chris Charlton <[EMAIL PROTECTED]> wrote: Updated extension (v.0.2.9) posted athttp:

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Morgan Allen
Could not agree more Jörn, every link I click seemed to be sending me in circles. Luckily this app looked really cool, otherwise I would have said f-it in half the time it took me find the download. And I still have not found on the site where is says what version of firefox this is meant for. Appa

[jQuery] Manipulation of objects

2008-01-29 Thread RyanMC
I am working on a site where various dynamic content will be created each session. There will end up being between 1 and a very large number of select boxes on the page. Users are able to add items that need to be inserted into each select box. I found a plugin that allows me to addOption and adju

[jQuery] Re: [validate] possible/how-to validate all forms on page with given class and/or name?

2008-01-29 Thread Randall J. Parr
Jörn Zaefferer wrote: > > Randall J. Parr schrieb: >> [...] >> All of the above selectors seem to work when tested in firebug; that >> is, the proper line items (forms) are found. >> >> 1) Is it possible to validate one or more forms in a given page based >> on something other than id? >> >> 2)

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Ugh.. (function( $ ){ var last = 0, $pane = $('#container'), $items = $pane.find('li'); $('#next').bind('click', +1, handler ); $('#prev').bind('click', -1, handler ); function handler( e ){ var next = last + e.data; if( $items[next] ){ last = next; $pane.sc

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-29 Thread Tristan
Does anyone know if a similar thing exists for the eclipse IDE? On Jan 29, 11:45 am, Chris Charlton <[EMAIL PROTECTED]> wrote: > Updated extension (v.0.2.9) posted athttp://xtnd.us

[jQuery] Shadowbox and ajax-returned content?

2008-01-29 Thread Bruce MacKay
Hello all/Michael, I'm wanting to use Shadowbox in an application where the content of the page is being changed via AJAX I have added Shadow.init(); into the callback function that is fired when the page's content is repopulated. From the generated view of the source code, the " " ta

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Jörn Zaefferer
Jörn Zaefferer schrieb: Bill Orcutt schrieb: [...] Have a look at the demo applications below to get a feel for some of what Lily can do: [...] More information about Lily is available on the website: http://www.lilyapp.org/ Wow. Thats amazing stuff, I love the svg/javascript sound demos.

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Hi caruso, your situation remainds me of this: http://www.freewebs.com/flesler/jQuery.ScrollShow/ It's a plugin that actually uses ScrollTo. It's called ScrollShow: http://plugins.jquery.com/project/ScrollShow I kinda abandoned the plugin and it stayed in beta stage, but it automatically does wha

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Jörn Zaefferer
Bill Orcutt schrieb: [...] Have a look at the demo applications below to get a feel for some of what Lily can do: [...] More information about Lily is available on the website: http://www.lilyapp.org/ Wow. Thats amazing stuff, I love the svg/javascript sound demos. Using interactive visuals

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Jörn Zaefferer
Karl Swedberg schrieb: Sorry for the repeat posts, but this is the first time I've looked at this sort of thing. I just realized that we can get up to 100 items by changing that bigIndex function -- just pad values less than 10 and append a delimiter to each one: [...] The serialization I'v

[jQuery] Re: [Announce] New Menu plugin

2008-01-29 Thread Jörn Zaefferer
Roman Weich schrieb: [...] If you want, you can try it out here: http://p.sohei.org/jquery-plugins/menu/ Please let me know what you think about it. Nice! Some things I noted while clicking through the demo: You could improve the demo by adding cursor:default for the menu. The text-selecti

[jQuery] [ANNOUNCE] jQuery.Preload - 4 in 1 image preloader

2008-01-29 Thread Ariel Flesler
Hi everyone Today added the first release of jQuery.Preload. As said in the project page, it's a multi-functional plugin to preload images. It can be used for 4 (or more) different situations. The plugin is very small ( less than 1.5kb minified ) and offers many settings to configure it. It also

[jQuery] Re: Not Submit [validate]

2008-01-29 Thread Jörn Zaefferer
Marcos Aurélio schrieb: OBS: I just found that the problem only occurs when you have a field with the attribute "remote". Could you provide a testpage? Jörn

[jQuery] Re: Parsing XML using jQuery

2008-01-29 Thread Dave Stewart
Thanks David and Tim, I didn't know that. Very useful.

[jQuery] Re: Change Jeditable trigger

2008-01-29 Thread frizzle
I noticed that if the trigger is in a different TD than the DIV itself, Mika's method won't work, am i correct? On Jan 24, 1:58 pm, frizzle <[EMAIL PROTECTED]> wrote: > On Jan 24, 12:39 pm, frizzle <[EMAIL PROTECTED]> wrote: > > > > > On Jan 24, 11:59 am, Mika Tuupola <[EMAIL PROTECTED]> wrote: >

[jQuery] Re: Coda-slider ... with a twist!

2008-01-29 Thread [EMAIL PROTECTED]
Hey Asif, I'm interested in assisting you with this task. However, I would need to have a look at your source code. On Dec 30 2007, 4:31 pm, Asif R Naqvi <[EMAIL PROTECTED]> wrote: > Hi Guys, > > Hope one of you can put me out of this misery! > > I'm trying to modify the coda-slider which is d

[jQuery] Re: New and better demos

2008-01-29 Thread caruso_g
Thanks Ariel, I didn't be able to use it for the following project ( http://www.bonsai-studio.net/clients/lamoy/wessel02/albums/page2/index.html ) so I had to make some code to the ground up (think about I am just a designer... :P ). So here I am, I have a feature request! Can you implement a fu

[jQuery] Re: jquery VS internet explorer

2008-01-29 Thread ZiTAL
Thank you very much, i try this tomorrow ;) On Jan 29, 6:21 pm, "Charles K. Clarkson" <[EMAIL PROTECTED]> wrote: > ZiTAL wrote: > > : Hi, i have done a very simple example of jquery slide, but it doesn't > : work correctly in internet explorer, it blinks in the beginning and at > : the end. Thank

[jQuery] Re: Validate remote method response problem

2008-01-29 Thread Rus Miller
Whew! OK. Got the URL checker working but to tell the truth I don't know what the issue was. I thought it was the onkeyup:false that fixed it but I just checked and it worked anyway, although I like the idea of the validation happening on blur so I left it as false. If anyone's interested...

[jQuery] Safari 3 offset and empty table cells

2008-01-29 Thread whylom
I am looking for a workaround to some strange behavior I've observed in Safari 3. I am getting inaccurate values for the offsetTop of table cells, but only when the cells are empty. The width and height are accurate. offsetTop is even accurate for the surrounding cells, as long as they are not

[jQuery] [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Bill Orcutt
Hi All- I'm happy to announce the first beta release of Lily, a Mozilla based visual programming environment written in Javascript. Lily is a modular framework that allows you to wire together Javascript library components graphically. Currently there are Lily modules that wrap components from th

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Karl Swedberg
Sorry for the repeat posts, but this is the first time I've looked at this sort of thing. I just realized that we can get up to 100 items by changing that bigIndex function -- just pad values less than 10 and append a delimiter to each one: function bigIndex(inival) { return inival < 1

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Karl Swedberg
No problem, Bhaarat! Glad you like it. Actually, the way I set it up, mine was limited to 10 or fewer links. But we can increase that number by calling a function that returns, for example, a base-32 string instead of index: function bigIndex(inival) { return (inival).toString(32); } T

[jQuery] Problems with bind

2008-01-29 Thread wyo
I've tried to build a table collapser yet I've problems with the statements $('#collapser_'+i+', .expanding').bind('click', collapser_collapse (i)); $('#collapser_'+i+', .collapsing').bind('click', collapser_expand (i)); To me they look correct yet Javascript stops working. The source is

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Bhaarat Sharma
Hi Karl, Thanks a lot! your solution is obviously much better and not dependent on how many links there are. since you are using 'each' function. I had the concept with me but not the power of ins and outs of jQuery :) Next i'll be trying to make http://www.coldfusionjedi.com/demos/sharp/ajaxL

[jQuery] Re: ajaxStart - need a bit of help

2008-01-29 Thread Priest, James (NIH/NIEHS) [C]
Of course as soon as I post something I found this older post by Rey... http://www.mail-archive.com/[EMAIL PROTECTED]/msg16936.html It looks like it does what I need... unless anyone has any other suggestions - or something's been improved since then. Jim > -Original Message- > From:

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Karl Swedberg
Hi Bhaarat, You've done a nice job here! I was wondering, though, if we could take advantage of the index value of the links, so I re-factored your code a bit (still using Klaus's cookie plugin). Here is what it looks like: $(document).ready(function() { $('#menu li ul').hide(); var co

[jQuery] Re: Generating a Mousedown event programmatically - similar to click() generation..

2008-01-29 Thread edwardbaafi
> http://docs.jquery.com/Events has mousedown, mouseup, mousemove, etc > Yes, you are able to trigger these events using "trigger( type, data )", but what about setting the event properties? In my case, when an element is "draggable" and it's mousedown event fires, the click function in ui.mouse

[jQuery] Re: Tab Effect

2008-01-29 Thread ocyrus
Biography Background Contact $(document).ready(function(){ $('#profile-nav').children().each(function(){ $(this).click(function(){ toggleTabs($(this)); return false; }); }); }); function toggleTabs(tab) { tab.siblings().children().removeClass('

[jQuery] Re: jQuery CDN Host?

2008-01-29 Thread Hsiu-Fan Wang
protip: you can pick a specific version, and use packed or min as well. For example, 1.2.2 minified is available as http://code.jquery.com/jquery-1.2.2.min.js too bad S3 doesn't have gzip. On Jan 29, 2008 8:55 AM, Glen Lipka <[EMAIL PROTECTED]> wrote: > I believe http://code.jquery.com/jquery-la

[jQuery] Re: Google map plugin?

2008-01-29 Thread Hamish Campbell
I've used jmap2 a bit. It's really nice to have a jQuery-like way of playing with maps (as well as geocoding, etc) - but as was said before, hard to say if it is worth it for the added overhead and restrictions it places on your code. That said, I think there is room for a more extensive jQuery s

[jQuery] Re: Google map plugin?

2008-01-29 Thread Chris J. Lee
Good point i guess i'm thinking too much. I'm just pretty lazy and thought there'd be a more convenient and fast plugin i could easily port from web project to web project. On Jan 29, 3:53 am, Mika Tuupola <[EMAIL PROTECTED]> wrote: > On Jan 29, 2008, at 12:51 AM, Chris J. Lee wrote: > > > Is t

[jQuery] Re: jQuery API extension for Dreamweaver

2008-01-29 Thread Chris Charlton
Updated extension (v.0.2.9) posted at http://xtnd.us

[jQuery] Firefox: how to center the selected text in textarea

2008-01-29 Thread [EMAIL PROTECTED]
Hi, folks: I am trying to implement a search toolset based on "textarea". the function I am using to highlight the resulting string(txt) is something like: textarea.setSelectionRange(pos, pos+txt.length); textarea.focus(); /* seems useless */ Everything is OK except when there are more c

[jQuery] Re: AJAX file management

2008-01-29 Thread Kyle Browning
http://labs.adobe.com/technologies/air/ Air is free. On Jan 29, 2008 11:39 AM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Thanks for the link. I notice this goes for $289 for a commercial > license. Know anything that's freeware? > > - Dave > > On Jan 29, 11:00 am, "Glen Lipka" <[EMAIL

[jQuery] Re: Google map plugin?

2008-01-29 Thread Chris J. Lee
Yeah it does. I'll keep that in mind. On Jan 29, 12:59 pm, Dave Stewart <[EMAIL PROTECTED]> wrote: > Hi Chris, > > The trick to Google Maps (for me at least) was getting to know the > basics of the OOPness of it all. > > EVERYTHING (just about) is an object. You rarely pass values, you > normally

[jQuery] Re: File inputs

2008-01-29 Thread Steffan A. Cline
on 1/29/08 11:57 AM, Mika Tuupola at [EMAIL PROTECTED] wrote: > > > On Jan 29, 2008, at 7:08 PM, Steffan A. Cline wrote: > >> I know there is a plug-in for styling file inputs but what about >> using a >> custom image instead? I need to do something where I have an ADD and a >> DELETE button s

[jQuery] Re: Not Submit [validate]

2008-01-29 Thread Marcos Aurélio
OBS: I just found that the problem only occurs when you have a field with the attribute "remote".

[jQuery] Re: Tab Effect

2008-01-29 Thread ocyrus
I recently solved this solution this way, $(document).ready(function(){ $('#profile-nav').children().each(function(){ $(this).click(function(){ toggleTabs($(this)); return false; }); }); }); function toggleTabs(tab) { tab.siblings().children().removeClass('on'); tab.c

[jQuery] Re: Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread ocyrus
I always solved this problem with a database table, but this is solution when no database is being used. Nice. On Jan 29, 10:41 am, Bhaarat Sharma <[EMAIL PROTECTED]> wrote: > Hi, > > I took the code from jQuery Accordion menu and am using the cookie > plugin. > > while searching for a collapse-a

[jQuery] ajaxStart - need a bit of help

2008-01-29 Thread Priest, James (NIH/NIEHS) [C]
I'm building a form - I've got one field where I'm allowing the user to select a radio button (selecting a division) and then doing an Ajax call to populate a related text field with a name. I've got a little animated 'ajaxy' graphic that pops up to show activity: // get division direct

[jQuery] Re: AJAX file management

2008-01-29 Thread [EMAIL PROTECTED]
Thanks for the link. I notice this goes for $289 for a commercial license. Know anything that's freeware? - Dave On Jan 29, 11:00 am, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > Check out the examples inhttp://extjs.com > > Specifically the Web Desktop demo, as well as the "tree" demo. > > You

[jQuery] [Announce] New Menu plugin

2008-01-29 Thread Roman Weich
Hey all, additionally to my clickMenu plugin, I've created a new menu plugin called...uhm... "menu" (the name will be changed in the first real release, as I've just seen that the new UI-menu will be called the same. Maybe someone knows a good name? ;) ). The most notable features (and diff

[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Aaron Heimlich
And you got my extensible file extension --> plugin mappings request in there too! Woot! On Jan 29, 2008 4:29 AM, Michael J. I. Jackson <[EMAIL PROTECTED]> wrote: > Hi all, > Just wanted to let you all know that the jQuery adapter has been updated > to include the kind of sweet jQuery functionali

[jQuery] Re: File inputs

2008-01-29 Thread Mika Tuupola
On Jan 29, 2008, at 7:08 PM, Steffan A. Cline wrote: I know there is a plug-in for styling file inputs but what about using a custom image instead? I need to do something where I have an ADD and a DELETE button side by side. I tried this using .click() and it worked flawlessly but alas FF do

[jQuery] Re: Shadowbox Media Viewer

2008-01-29 Thread Mike Alsup
That's awesome, Michael. Thank you! Hi all, > Just wanted to let you all know that the jQuery adapter has been updated > to include the kind of sweet jQuery functionality that Mike is talking about > in this email. Head on over and give it a shot if you haven't already. > > http://mjijackson.com

[jQuery] Not a plugin but code for anyone trying to have collapse-able menu with cookies

2008-01-29 Thread Bhaarat Sharma
Hi, I took the code from jQuery Accordion menu and am using the cookie plugin. while searching for a collapse-able menu I saw that a lot of people were looking for this but with cookies so when user refreshes..the collapse/expand state stay the same. I am new to jQuery and even javascript. But

[jQuery] Not Submit [validate]

2008-01-29 Thread Marcos Aurélio
I just find a serious problem. If you submit the form without having completed anything (for him return error), when you are trying to complete and submit it will not submit. Ah! Thank you for remote, it was great! Abraços Marcos Aurélio

[jQuery] Not Submit [validate]

2008-01-29 Thread Marcos Aurélio
I just find a serious problem. If you submit the form without having completed anything (for him return error), when you are trying to complete and submit it will not submit. Ah! Thank you for remote, it was great! Abraços Marcos Aurélio

[jQuery] Re: Google map plugin?

2008-01-29 Thread Dave Stewart
Hi Chris, The trick to Google Maps (for me at least) was getting to know the basics of the OOPness of it all. EVERYTHING (just about) is an object. You rarely pass values, you normally instantiate objects, then pass them. For example, in the example Bohdan gave, you would have to 1) create the

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-29 Thread [EMAIL PROTECTED]
Once your data is loaded into the page your bind events are not bound anymore, since you replaced the DOM information. You can either rebind events with running a rebind function, or you can use live jQuery http://brandonaaron.net/docs/livequery/ Should fix your problem. -Kyle On Jan 29, 6:08 a

[jQuery] Re: link stops working in fragment returned from ajax depending on select

2008-01-29 Thread K Bouton
More info - the links work as expected in IE 7.0.x but not Firefox 2.0.x

[jQuery] File inputs

2008-01-29 Thread Steffan A. Cline
I know there is a plug-in for styling file inputs but what about using a custom image instead? I need to do something where I have an ADD and a DELETE button side by side. I tried this using .click() and it worked flawlessly but alas FF does not support it! How stupid!. Any suggestions? Thanks

[jQuery] Tab Effect

2008-01-29 Thread studiobl
I have a set of tabs that use the sliding doors technique. The tabs are built on an unordered list, with each tab being a list item containing an anchor. Each tab is decorated by placing a graphic in the background of its list item for the left part of the tab, and the background of the anchor fo

[jQuery] Livequery, ajax and IE

2008-01-29 Thread Toti Stefansson
I'm using livequery to achieve the following: $('.stock a') .livequery('click', function(event) { var thisTarget = $(this).attr('href'); $.ajax({ url: '/u

[jQuery] Re: jquery VS internet explorer

2008-01-29 Thread Charles K. Clarkson
ZiTAL wrote: : Hi, i have done a very simple example of jquery slide, but it doesn't : work correctly in internet explorer, it blinks in the beginning and at : the end. Thanks for all (sorry for my bad english). : : link: : http://zital.no-ip.org/jquery/ [gets on soap box] Always, always,

[jQuery] Re: Google map plugin?

2008-01-29 Thread 1man
Or you could take a look at mapstraction (http:// www.mapstraction.com/) There was a tutorial on 24ways in December, nice introduction. http://24ways.org/2007/unobtrusively-mapping-microformats-with-jquery Hope that helps. On Jan 28, 10:51 pm, "Chris J. Lee" <[EMAIL PROTECTED]> wrote: > I've se

[jQuery] Re: Error - getComputedStyle?

2008-01-29 Thread hj
> Error is as follows: > > uncaught exception: [Exception... "Could not convert JavaScript > var getComputedStyle = document.defaultView.getComputedStyle( elem, > null ); Not surprising; IE doesn't implement document.defaultView, let alone the getComputedStyle method. jQuery doesn't -directly-

[jQuery] Re: clickmenu, change "click" event to "mouseover"

2008-01-29 Thread Roman Weich
[EMAIL PROTECTED] schrieb: Hello. Is it possible to change menu trigger event form click to mouseover? It's better for my purposes. Thanks in advance for answer. Please take a look at Barry Halims comment on http://p.sohei.org/jquery-plugins/clickmenu/#comment-4051 I think that he's descri

[jQuery] Re: Focus event and problem width IE

2008-01-29 Thread Richard D. Worth
This is not supported in IE. More info: http://dev.jquery.com/ticket/120 The fix is to create a new input with type=password and copy any attributes from the old one. - Richard On Jan 29, 2008 12:02 PM, Jamal Arbib <[EMAIL PROTECTED]> wrote: > > Hi > > I want to change the input's type, from

[jQuery] Re: New and better demos

2008-01-29 Thread Ariel Flesler
Hi all Thanks a lot for your replies! @Jack I don't fully understand what you mean, could you explain it some more ? or maybe find an example (can be flash or anything). @caruso ScrollTo can scroll to any kind of element, not only LIs. Check the old demo, the first input field uses a CSS

[jQuery] Focus event and problem width IE

2008-01-29 Thread Jamal Arbib
Hi I want to change the input's type, from "text" to "password" using the focus event. I use the following jquey code $(document).ready(function(){ $("#passwd").focus( function() { $(this).attr("value",""); $(this).attr("type","password"); } ); })

[jQuery] Re: AJAX file management

2008-01-29 Thread Glen Lipka
Check out the examples in http://extjs.com Specifically the Web Desktop demo, as well as the "tree" demo. You also might be interested in Adobe AIR, which allows for more integration with the OS. Glen On Jan 29, 2008 8:53 AM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Hi, > > Can anyone

[jQuery] Re: Generating a Mousedown event programmatically - similar to click() generation..

2008-01-29 Thread Glen Lipka
http://docs.jquery.com/Events has mousedown, mouseup, mousemove, etc Also check out the plugins for "draggables" in UI. http://docs.jquery.com/UI Glen On Jan 28, 2008 1:49 PM, edwardbaafi <[EMAIL PROTECTED]> wrote: > > Hi.. > > Does anyone know how one could generate a mousedown event > program

[jQuery] Re: .clone not work in FF or IE, please help

2008-01-29 Thread Eridius
you said your code copied the element correctly, but mine is not. do you see anything wrong with my code that would make my element it should be coping to data empty? chrismarx wrote: > > > should clone also work for behaviors that were not added by jquery? > (like a google map?) i tried to

[jQuery] Re: jQuery CDN Host?

2008-01-29 Thread Glen Lipka
I believe http://code.jquery.com/jquery-latest.js is hosted by Amazon S3. source: http://jquery.com/blog/2007/04/02/google-groups-and-amazon-s3/ Glen On Jan 28, 2008 2:58 PM, dgouldin <[EMAIL PROTECTED]> wrote: > > Is there a jQuery CDN host that anybody knows of? >

[jQuery] AJAX file management

2008-01-29 Thread [EMAIL PROTECTED]
Hi, Can anyone recommend anything that allows you to manage files stored on the web in a tree-like GUI, allowing for drag-and-drop. I'm thinking of a web-based equivalent of what you may do with files on your desktop. Thanks, - Dave

[jQuery] Re: clickmenu, change "click" event to "mouseover"

2008-01-29 Thread Glen Lipka
Do you have a page you could show? I think this isn't enough detail. Glen On Jan 29, 2008 6:29 AM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello. > > Is it possible to change menu trigger event form click to mouseover? > It's better for my purposes. > > Thanks in advance for answer. >

[jQuery] Re: IE7 it does't work (bug?)

2008-01-29 Thread Charles K. Clarkson
mixfox wrote: : here is my code : : $(document).ready(function() { $('#imageid').load(function(){ : : alert('hello'); : : }); }); : : "#imageid" is an img lable's ID That works for me. Perhaps the error is in the html portion of your page. Are you sure the image has an id of id="imag

[jQuery] Re: New and better demos

2008-01-29 Thread Alexandre Plennevaux
in fact i just looked at the old demo and i find it quite nice looking too! (me love colours :) at least it's not webtwooish, which is a quality in my eyes :) http://www.freewebs.com/flesler/jQuery.ScrollTo/index.old.html On Jan 29, 2008 4:56 PM, caruso_g <[EMAIL PROTECTED]> wrote: > > Hi, than

[jQuery] Re: .clone not work in FF or IE, please help

2008-01-29 Thread chrismarx
should clone also work for behaviors that were not added by jquery? (like a google map?) i tried to clone a div with a google map, and although clone successfully copied all the elements, the behaviors were lost. append did the job for a workaround. should clone(true) be able to also grab all the

[jQuery] Re: Google map plugin?

2008-01-29 Thread chrismarx
i agree, i don think any plugin will be able to keep up with all the new developments. unless you want a super simple map. are you interested in a jstl version? On Jan 29, 5:12 am, Bohdan Ganicky <[EMAIL PROTECTED]> wrote: > Hi Chris, > Mika is absolutely right. Google Maps API is itself quite si

[jQuery] textarea catch paste event from menu

2008-01-29 Thread JCR
Hello, I need to catch any change to a textarea and I am struggling with the case where the user pastes some text using the menu of the browser. In such case, the content has changed but key-related events are not triggered because obviously the keyboard was not touched. An event like onchange is

  1   2   >