[jQuery] Focus code snippet for: BlockUI, Lightbox, Thickbox, and other windows...

2007-05-04 Thread Gilles (Webunity)
Guys, It has been a long time since the first blockUI and window plugins (e.g. lightbox/thickbox) became available. However, i still didn't see this piece of code in any of these sollutions. All projects have thesame bug, you can TAB out of the lightbox, to the underlying page. (For a demo, open

[jQuery] Re: IE lt 6 png hack

2007-05-04 Thread Kush Murod
Hi Jörn, Thanks so much for the feedback and directions, your plugin made this plugin much better :) I took the idea from your plugin where you detect ping background images set in css and apply the hack, that is great I'll add more examples when I get some time

[jQuery] Re: Focus code snippet for: BlockUI, Lightbox, Thickbox, and other windows...

2007-05-04 Thread Klaus Hartl
Gilles (Webunity) wrote: Guys, It has been a long time since the first blockUI and window plugins (e.g. lightbox/thickbox) became available. However, i still didn't see this piece of code in any of these sollutions. All projects have thesame bug, you can TAB out of the lightbox, to the

[jQuery] Re: Plugin downloads

2007-05-04 Thread Giuliano Marcangelo
Otto, seems fairly easy to me to download the js http://menu.n2cms.com/Js/n2menu.js http://menu.n2cms.com/Download.aspx On 04/05/07, wyo [EMAIL PROTECTED] wrote: Why can't plugin authors provide useful downloads? I just tried to look into n2menu and wanted to download it, yet it

[jQuery] Re: ThickBox 3

2007-05-04 Thread Klaus Hartl
Sam Collett wrote: 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())? No, absolutely not! All I can say is that I'm already using Thickbox Reloaded quite heavily

[jQuery] Re: Focus code snippet for: BlockUI, Lightbox, Thickbox, and other windows...

2007-05-04 Thread Gilles (Webunity)
On 4 mei, 09:41, Klaus Hartl [EMAIL PROTECTED] wrote: Gilles (Webunity) wrote: Guys, It has been a long time since the first blockUI and window plugins (e.g. lightbox/thickbox) became available. However, i still didn't see this piece of code in any of these sollutions. All projects have

[jQuery] Time Selection like in Google Calendar

2007-05-04 Thread Widi Harsojo
Do jQuery have plugin for Time Edit Box??? this one is not good but I need it Regards Widi Harsojo sorry english is not my nativ language style type=text/css /*![CDATA[*/ .CB_menu{margin-top:7px;margin-left:7px} .CB_menu{border:1px solid #000;background-color:#FFF}

[jQuery] Jquery: New app and this article

2007-05-04 Thread Vaska
Bonjour: It's not even a 1.0 app yet, but in just a couple weeks 100's of folks are using it - we've done no promo at all. We just did a very fast email interview with Creative Review so somebody is paying attention (more interviews are on the way too). Jquery is the 'framework' of

[jQuery] input type='radio' in a TD with onclick

2007-05-04 Thread Peter Bengtsson
This is the HTML I have to work with: table tr td class=foo input type=radio name=tra value=one / /td td class=foo input type=radio name=tra value=two / /td /tr /table My first attempt was this:: $('td.foo').click(function() {

[jQuery] Re: Interface 3d Carousel problems

2007-05-04 Thread MrTufty
Ok, I didn't have var noRotate = false; before, as it wasn't mentioned anywhere that it was necessary. Here's the code that I have for my Carousel - I haven't included the main page this comes from, this is just the part that gets loaded with Ajax, into a div called #main-area. I've changed the

[jQuery] Re: Interface 3d Carousel problems

2007-05-04 Thread MrTufty
Incidentally, I just tested it in IE7 and it works. I'm also getting a different error in Firefox now - don't know why, all I've changed is to move the Carousel startup code into my main JS file rather than loading it from the ajax-loaded file. This new one is something about an uncaught

[jQuery] Re: Focus code snippet for: BlockUI, Lightbox, Thickbox, and other windows...

2007-05-04 Thread Klaus Hartl
Gilles (Webunity) wrote: Well, sorry Klaus, but i based this conclusion on this page: http://malsup.com/jquery/block/#dialog Show the dialog (in FF 2.0) and start tabbing. You'll soon see that the focus jumps to the tabs on top of the screen. I didn't actually look into the code, so sorry for

[jQuery] Re: Getting the full class set of the current object

2007-05-04 Thread Sam Collett
$('.a')[0].className should work On May 4, 4:01 am, DaveG [EMAIL PROTECTED] wrote: Given: div class=a b/div Running: $('.a').attr('class') Returns: a I expected a b. How do I obtain the full class set applied to the current object? ~ ~ Dave

[jQuery] Re: Interface 3d Carousel problems

2007-05-04 Thread MrTufty
I really wish I understood why, but I don't. It is however, now working. :| On May 4, 9:46 am, MrTufty [EMAIL PROTECTED] wrote: Ok, I didn't have var noRotate = false; before, as it wasn't mentioned anywhere that it was necessary. Here's the code that I have for my Carousel - I haven't

[jQuery] prevent parent behaviour

2007-05-04 Thread Alexandre Plennevaux
hello friends, i have this html structure: dta href=mylink.php class=ajaxclick me/a/dt i have a behaviour for the DT element, which, on click, should toggle the visibility of its corresponding DD element. I also have a behaviour for the A element, which loads via ajax content somewhere

[jQuery] Re: prevent parent behaviour

2007-05-04 Thread Erik Beeson
Offhand I'm not certain, so instead of giving you mediocre advice, I suggest you check out: http://www.google.com/search?q=javascript+event+bubbling I think the first link addresses your issue. --Erik On 5/4/07, Alexandre Plennevaux [EMAIL PROTECTED] wrote: hello friends, i have this

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

2007-05-04 Thread Juha Suni
Brandon Aaron wrote: Events in the latest SVN are now using addEventListener and attachEvent. On 5/3/07, Dan G. Switzer, II [EMAIL PROTECTED] wrote: This has already been reporting and is filed as a bug. This has to do w/the how events are attached in the current jQuery code. I believe this

[jQuery] jQuery :: Popup Div

2007-05-04 Thread David
Hi All, I'm desperately trying to get all of our team to standardise on jQuery and dump the mixture of other frameworks we have used (prototype, scriptaculous, dojo, etc). So... I'm looking for the jquery equivalent of this: http://simile.mit.edu/timeline/ Click on a link in the Timeline

[jQuery] Re: input type='radio' in a TD with onclick

2007-05-04 Thread George
Hi Peter, I'd suggest one of the following, depending on your circumstances: 1. Try cancelling the event bubbling by returning false from your click event handler. 2. Let html do the work by filling the TD with a label element like this: label for=mycheckboxIDinput type=radio

[jQuery] Re: ThickBox 3

2007-05-04 Thread Cees
On May 4, 2:01 am, Glen Lipka [EMAIL PROTECTED] wrote: Thanks for updating. :) I think I liked the old loading animation more. It had flair. Glen I agree with you Glen - one can always keep the old image but that would put me 'of standard' - maybe it is possible to choose which loading

[jQuery] Multiple File Upload Plugin Bug in IE6/7

2007-05-04 Thread Diego A.
Hi, A user kindly reported a bug in my plugin, but I'm having a hard time trying to fix it. The plugin is here: http://www.fyneworks.com/jquery/multiple-file-upload/ The bug is: If you do specify a file extension, for example jpg, and then you try to enter a disallowed file type, for example a

[jQuery] Re: How do you find out the *previously* checked radio button

2007-05-04 Thread Diego A.
I don't think there's an easy way to do this, other than, when the page loads, record which element is checked. Then when the value changes you will know what the previous element was... On May 4, 11:24 am, George [EMAIL PROTECTED] wrote: Hi all, When you click a radio button, the

[jQuery] How do you find out the *previously* checked radio button

2007-05-04 Thread George
Hi all, When you click a radio button, the event.target can tell you which one was clicked (and thanks to jQuery this works in IE too.) So, how would you find out which radio button had been checked just before the click? (in other words, tell me what the user's radio button selection has

[jQuery] Re: Focus code snippet for: BlockUI, Lightbox, Thickbox, and other windows...

2007-05-04 Thread Mike Alsup
There's a little more to it than that, Gilles. First, it would have been great if you had looked at the code to see what it was doing. However, since you tested the dialog blocking you should have noticed that tabbing off the blocking message does not allow you to activate any of the other

[jQuery] Re: How do you find out the *previously* checked radio button

2007-05-04 Thread Joel Birch
On 04/05/2007, at 8:24 PM, George wrote: So, how would you find out which radio button had been checked just before the click? (in other words, tell me what the user's radio button selection has changed from.) I could easily be wrong, but I would have thought that due to the nature of Event

[jQuery] ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread [EMAIL PROTECTED]
I am starting up with two technologies...asp.net and jQuery. jQuery works great with old asp, but seems to be 'unwelcome' in asp.net. Anyone have direct experience marrying the two? --- Dave

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

2007-05-04 Thread Mika Tuupola
On May 3, 2007, at 10:43 PM, Rey Bango wrote: 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 Ajujaht - Estonian business idea competition http://www.ajujaht.ee/

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

2007-05-04 Thread shelane
I also had this problem and pleaded for help in these threads: http://groups.google.com/group/jquery-en/t/6722e380538892b9 and http://groups.google.com/group/jquery-en/browse_thread/thread/7935f78c0cf61e4b eventually, I asked John for help. From John's email: Take into consideration that

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

2007-05-04 Thread Dan G. Switzer, II
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: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Sam Collett
I've been using them both together for a while. I do generally stick to some of the simpler controls (like Repeaters, DropDownLists and Buttons) and never use DataGrid's. But I don't use the designer much and code mostly by hand. I just use postback's to add /edit / delete records and then

[jQuery] Re: spam-free accessible forms

2007-05-04 Thread Dan G. Switzer, II
Today, someone on our list posted this link that has 7 different methods for protecting against spambots. These methods still protect accessibility and don't degrade the user experience. http://webaim.org/blog/2007/03/07/spam_free_accessible_forms/ Just a quick comment about one of the

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

2007-05-04 Thread John Resig
Rey - It's fine to add it, it's a business - we already have a number of other web development/design firms on the list. --John On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Kevin, One of the things that we're trying to do on that page is focus on actual consumer driven sites as

[jQuery] Re: IE lt 6 png hack

2007-05-04 Thread Jörn Zaefferer
Kush Murod schrieb: Hi Jörn, Thanks so much for the feedback and directions, your plugin made this plugin much better :) I took the idea from your plugin where you detect ping background images set in css and apply the hack, that is great I'll add more examples when I get some time

[jQuery] Re: ThickBox 3

2007-05-04 Thread Jörn Zaefferer
Cees schrieb: On May 4, 2:01 am, Glen Lipka [EMAIL PROTECTED] wrote: Thanks for updating. :) I think I liked the old loading animation more. It had flair. Glen I agree with you Glen - one can always keep the old image but that would put me 'of standard' - maybe it is possible to

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

2007-05-04 Thread Jonathan Sharp
Here's another one I've neglected to mention (I even built it!) It uses thickbox http://www.sharpequestrian.com -js P.S. There's a photo of me on the photos page with my horse Micah. On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Kevin, One of the things that we're trying to do on that

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Brandon Aaron
There are some known issues when dealing with .Net's controls, especially centered around events. In the latest SVN and soon to be 1.1.3 jQuery no longer errors out with .Net but I believe there are still some issues that need to be worked out. If you have a specific issue just let us know. --

[jQuery] Pure Object/Embed solution via jQuery?

2007-05-04 Thread Andy Matthews
You might recall that my company is having some issues with using jQuery alongside SWFObject and select dropdowns with the onChange handler. I've seen a plugin that uses jQuery to call the SWFObject js file. But I'm wondering if anyone has a PURE jQuery solution for the IE click to activate

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Chris Scott
[EMAIL PROTECTED] wrote: I am starting up with two technologies...asp.net and jQuery. jQuery works great with old asp, but seems to be 'unwelcome' in asp.net. Anyone have direct experience marrying the two? --- Dave What problems are you having? I'm finishing up a project using ASP.NET and

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread Rey Bango
Hi Vaska, Also, anybody know why the author here did not include Jquery? http://www.ddj.com/dept/webservices/199203087 Cheers While jQuery is certainly as powerful and feature rich as those mentioned, it doesn't have the name recognition of a Dojo, YUI or Prototype. We're doing our best

[jQuery] Re: HTML Node

2007-05-04 Thread Scott Sauyet
I wish there was a way in CSS to say div.foo *AND* div.bar {color:red} The comma acts like an OR statement. Why isn't there an AND statement? div.foo.bar {color: red}

[jQuery] Re: HTML Node

2007-05-04 Thread Ⓙⓐⓚⓔ
valid means passes the validater. it won't works means works ... id'ing the html is weird, but should work in most browsers $(div.foo.bar) might look good but I don't think it works. $(div.foo).filter(.bar) would be my choice to do an and. $(div.bar,.foo) might get you there too. On

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Ardie
Hi Dave, I'm currently using jquery in a asp.net project and the only issues i've run into is the $ conflicts that occur if you use MS's AJAX.NET controls. Only way to get around it is to make sure the jquery script and all your scripts that rely on jquery get loaded after any MS scripts.

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

2007-05-04 Thread ATom
Problem was in external javascript which was in loaded page. Thanks all for reply.

[jQuery] Re: jQuery :: Popup Div

2007-05-04 Thread Rey Bango
David, Here are a couple of options: http://dev.iceburg.net/jquery/jqModal/ http://www.codylindley.com/blogstuff/js/jtip/ Rey David wrote: Hi All, I'm desperately trying to get all of our team to standardise on jQuery and dump the mixture of other frameworks we have used (prototype,

[jQuery] Random Image Background

2007-05-04 Thread Glen Lipka
I want to have a div use a randomly chosen background image. I am going to be adding to the possible background images over time. Right now I have bg1.jpg and bg2.jpg. Eventually I might have dozens. My first instinct is var totalNum = 2; var rndNum = Math.floor(Math.random() * totalNum);

[jQuery] Re: Pure Object/Embed solution via jQuery?

2007-05-04 Thread Brandon Aaron
I've had the best results using UFO for embedding flash content. You should check it out: http://www.bobbyvandersluis.com/ufo/ -- Brandon Aaron On 5/4/07, Andy Matthews [EMAIL PROTECTED] wrote: You might recall that my company is having some issues with using jQuery alongside SWFObject and

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

2007-05-04 Thread Christof Donat
Hi, A lot of people prefer to package up all the plug-ins they use on a site and then pack/minimize it into one file. This method can be really affective for plug-ins that are used as part of the core site theme. 1. When your pages have very different functionality, it is more efficient to

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread John Resig
I don't think he has anything to do with name. Dr. Dobbs is a business-centric programming magazine. They focus completely on .NET and Java. jQuery, generally speaking, doesn't have wide-spread love in corporate environments (it doesn't look like .NET or Java - whereas Dojo and YUI generally

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Ryan Doom
unsubscribe Ryan Doom [EMAIL PROTECTED] www.webascender.com office   : 517.579.0420 mobile : 517.507.9274 Web (Sites, Marketing and Tracking) -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On

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

2007-05-04 Thread traunic
how would jsPax accomplish: $(user).each(function(){ $.jsanUse('com.myapp.userClass'); com.myapp.userClass.doSomething(this); }); Where com.myapp.userClass.doSomething is passed the selected user? Would it have to be this? $using('com.myapp.userClass', function() {

[jQuery] Re: Random Image Background

2007-05-04 Thread Andy Matthews
I'd create an array with image names. var randomImages = ['image_01','image_02','image_03',]; var rndNum = Math.floor(Math.random() * randomImages.length); The rest is fine. Then you just have to update the array and you're golden. _ From: jquery-en@googlegroups.com [mailto:[EMAIL

[jQuery] Re: spam-free accessible forms

2007-05-04 Thread Shelane
Good point Dan. I've never actually used that one. The one I've used so far is the hidden by CSS field. On May 4, 7:40 am, Dan G. Switzer, II [EMAIL PROTECTED] wrote: Today, someone on our list posted this link that has 7 different methods for protecting against spambots. These methods

[jQuery] Re: HTML Node

2007-05-04 Thread Glen Lipka
On 5/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: valid means passes the validater. it won't works means works ... id'ing the html is weird, but should work in most browsers $(div.foo.bar) might look good but I don't think it works. --This works! :) $(div.foo).filter(.bar) would be my choice to

[jQuery] Re: HTML Node

2007-05-04 Thread Ⓙⓐⓚⓔ
I guess when John Resig says CSS descriptors he really means it On 5/4/07, Glen Lipka [EMAIL PROTECTED] wrote: On 5/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: valid means passes the validater. it won't works means works ... id'ing the html is weird, but should work in most browsers

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

2007-05-04 Thread Christof Donat
Hi, how would jsPax accomplish: $(user).each(function(){ $.jsanUse('com.myapp.userClass'); com.myapp.userClass.doSomething(this); }); Where com.myapp.userClass.doSomething is passed the selected user? Would it have to be this? $using('com.myapp.userClass', function() {

[jQuery] Re: firefox and ie button onclick

2007-05-04 Thread Dave
Well, I never got it working quite right. in FF it was never a problem, but IE just refused to behave! I ended up trying prototype expecting the exact same problem - scripts would not load/execute/ insert into DOM. To my surprise, everything worked out great using the

[jQuery] Need to attach .click() event to HTML anchor link but it won't stop bubbling...

2007-05-04 Thread summea
I've been asking about the same problem (and still searching (in vain?) for an answer to the question here on the jQuery group...). I have a click function that I bind to each folder link in an imaginary file manager script. The problem is still, when I click on one folder and it displays its

[jQuery] Re: ASP.net and jQuery...Imperfect Together?

2007-05-04 Thread Sam Collett
I've been using them both together for a while. I do generally stick to some of the simpler controls (like Repeaters, DropDownLists and Buttons) and never use DataGrid's. But I don't use the designer much and code mostly by hand. I just use postback's to add /edit / delete records and then

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

2007-05-04 Thread Rey Bango
No prob. I'll add it in then. Rey John Resig wrote: Rey - It's fine to add it, it's a business - we already have a number of other web development/design firms on the list. --John On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: Hi Kevin, One of the things that we're trying to do on

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

2007-05-04 Thread Sean O
Hey, I got it working in IE FF by adding a non-breaking space before the script tag (echoed in PHP): echo  script type='text/javascript'$('#warn').html('required!');/script; $.getScript didn't work for either browser (perhaps because I'm calling a PHP document?). I'll have a look at the

[jQuery] Re: HTML Node

2007-05-04 Thread Glen Lipka
http://www.bennadel.com/index.cfm?dax=blog:680.view http://www.commadot.com/?p=529 so cool. On 5/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote: I guess when John Resig says CSS descriptors he really means it On 5/4/07, Glen Lipka [EMAIL PROTECTED] wrote: On 5/4/07, Ⓙⓐⓚⓔ [EMAIL PROTECTED] wrote:

[jQuery] ajaxSubmit multiple targets problem

2007-05-04 Thread juliandormon
Hi all, I am using Mike's ajaxSubmit method but I am running into a weird problem. Basically I have a page which allows you to rename folders using a form which is bound by the ajaxForm. The ajax returns perfectly and updates the new folder name with out a problem. It gets weird though if I

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread Matt Stith
Personally i like the relativaly small community that jQuery has, its easier to identfiy people and the mailing list doesnt get thousands of emails per day. On 5/4/07, John Resig [EMAIL PROTECTED] wrote: I don't think he has anything to do with name. Dr. Dobbs is a business-centric

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

2007-05-04 Thread Rodrigo Castilho Galvão Ferreira
Hello, http://www.rodcast.com.br/ or http://www.rodrigocastilho.com/ I used jQuery (compressed) and Plugins FontSizer and Stylesheet Switcher (with Extensions Cookie) On 5/4/07, Rey Bango [EMAIL PROTECTED] wrote: No prob. I'll add it in then. Rey John Resig wrote: Rey - It's

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread John Resig
It's funny that you should say that because the jQuery mailing list is the largest JavaScript mailing list out there (averaging over 100 posts/day). The next closest is Dojo at only about 60 posts/day. You'd have to combine Dojo, Prototype, and Yahoo UI to get the level of posts that we do.

[jQuery] Re: ajaxSubmit multiple targets problem

2007-05-04 Thread Mike Alsup
Julian, It looks like you're probably just rebinding the form over and over. Try changing that bind line to this: $('#' + theForm).unbind('submit').submit(function() { Mike On 5/4/07, juliandormon [EMAIL PROTECTED] wrote: Hi all, I am using Mike's ajaxSubmit method but I am running into

[jQuery] Re: Need to attach .click() event to HTML anchor link but it won't stop bubbling...

2007-05-04 Thread summea
I ended up turning this into one function, and it seems to work as far as I have tested. All I had to do was do this for the first part of the folder bind function: bindToFolder = function(specific){ $(specific).find('a').bind('click', function(evt){ // do stuff ...

[jQuery] Re: ajaxSubmit multiple targets problem

2007-05-04 Thread juliandormon
Thanks MIke! That works. Keep up the awesome work! malsup wrote: Julian, It looks like you're probably just rebinding the form over and over. Try changing that bind line to this: $('#' + theForm).unbind('submit').submit(function() { Mike On 5/4/07, juliandormon [EMAIL

[jQuery] javascript presentation

2007-05-04 Thread Benjamin Sterling
Guys and Gals, Can across this video and thought you would find it interesting and educational. http://video.yahoo.com/video/play?vid=cccd4aa02a3993ab06e56af731346f78.1710507 -- Benjamin Sterling http://www.KenzoMedia.com http://www.KenzoHosting.com

[jQuery] Re: javascript presentation

2007-05-04 Thread Jake McGraw
But did it have to be in the first 10 seconds? - jake On 5/4/07, Benjamin Sterling [EMAIL PROTECTED] wrote: What do you expect? He is a programmer... I think you are required to turn in your sense of humor and get a certified programmer upgrade. But that is just my theory. -- Benjamin

[jQuery] Silverlight plugin

2007-05-04 Thread Mike Alsup
I just posted a small plugin for creating unobtrusive Silverlight objects using the Silverlight 1.0 beta. You can find the source and some documentation here: http://malsup.com/jquery/ag/ Mike

[jQuery] LOADING CONTENT IN A PRE-EXISTING DIV

2007-05-04 Thread Paulo Gabriel
Hey everyone! This is the first time i'm using JQuery, and i'm having big trouble trying to make it work. Before JQ, i had scriptaculous and prototype running my site, but i need JQ to detect the user's resolution, so i could give him the proper background. But now, my old function that made my

[jQuery] ajax tabs: How do you refer to area content is loaded into?

2007-05-04 Thread [EMAIL PROTECTED]
Hi, With regards to the tabs plugin (http://stilbuero.de/jquery/tabs/ #fragment-13), I want to use the AJAX functionality to load content based on what tab is clicked. I understand content is loaded automatically from the specified URL, but once it is loaded, how do I get a reference to the

[jQuery] Re: HTML Node

2007-05-04 Thread Su
On 5/4/07, Glen Lipka [EMAIL PROTECTED] wrote: One question. Two answers here: It is Valid and it is NOT valid. Which is the truth? It seems unorthadox to put an ID on an HTML tag, but I don't see why it should be avoided if needed. (in rare circumstances) Not sure if you meant me. I

[jQuery] Re: HTML Node

2007-05-04 Thread Su
On 5/4/07, Glen Lipka [EMAIL PROTECTED] wrote: div.foo.bar {} works perfectly in IE6, IE7, and FF. Holy Cow! Basic regular CSS. How did I not know this? How have I gone so long and not known this? This is HUGE. I have spent so many hours working around this problem. My god. I am doofus!

[jQuery] Re: Silverlight plugin

2007-05-04 Thread David Duymelinck
It's like easy flash looking at the quickstart tutorials, the videobrush was a real eye-catcher. But i'm wondering is it possible to provide a container for the silverlight javascript functions so that the silverlight code can stay together or should it be witten like this $(function() {

[jQuery] Rounded Corners bug?

2007-05-04 Thread Christopher Jordan
Hi folks, I've got a problem with the corners plugin where sometimes in IE (not always), it will do this: If the image above is missing click here to see it. Any ideas? Thanks, Chris -- http://www.cjordan.us

[jQuery] Re: Getting the full class set of the current object

2007-05-04 Thread DaveG
Am I just going the wrong way? Should I switch to normal loop, or an each loop? Comments? $(.a) .each(function(i){ $(this).wrap('div class=outter ' +$(this).attr(class)+ '/div') .removeClass().addClass(z); }); Here's my attempt. It works. Is there a better/different way,

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread Matt Stith
Oh. guess i should do a little research :) On 5/4/07, John Resig [EMAIL PROTECTED] wrote: It's funny that you should say that because the jQuery mailing list is the largest JavaScript mailing list out there (averaging over 100 posts/day). The next closest is Dojo at only about 60 posts/day.

[jQuery] Re: HTML Node

2007-05-04 Thread Karl Swedberg
Hey Glen, div.foo.bar {} works perfectly in IE6, IE7, and FF. Beware of this CSS syntax does in IE6 (I'm not referring to the jQuery selector of course; just the pure css selector). I've had quite a few problems with it in the past. I started putting together a test page to show you

[jQuery] Interface 1.2; Imagebox: how to add a Rotate function?

2007-05-04 Thread Equand
Anybody knows how to add a rotate function (e.g. google rotate for jquery) into current Imagebox in Interface 1.2?

[jQuery] Re: Jquery: New app and this article

2007-05-04 Thread BKDesign Solutions
I think the below is a great idea. Posts to the list don't always work. As an example, I am a web developer with very low JavaScript ability, so a lot of what passes by on the list is incomprehensible, ..but some is sinking in by osmosis I think ;). There are more than a few plugins I'd