[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Aaron Heimlich
Very impressive stuff! A couple of comments: 1. Everything that Mike Alsup said 2. You should take a look at the file extension -- plugin mappings in Mike's media plugin[1] as it's much more extensive than yours for roughly the same list of plugins 3. Make the extension -- plugin mappings

[jQuery] Re: blockUI onClick stops processing in IE7

2008-01-26 Thread Mike Alsup
I'm using the blockUI plugin and it's tied to a form submit. When I click the submit button in IE7, blockUI goes into effect, but the form doesn't get submitted and the page just sits there with blockUI running. It works fine in Firefox though. That sounds vaguely familiar. What

[jQuery] Re: Is there a .new() ?

2008-01-26 Thread Karl Swedberg
On Jan 25, 2008, at 10:13 PM, David Serduke wrote: How about $(input type='hidden'/).attr({id:myid, name:myname}).val(foo).appendTo(this); I think that would work although the way you have it would be faster. Most elements you could just say $(div/) to create a new one but in IE the input

[jQuery] Re: Tabs stopped working in IE

2008-01-26 Thread Klaus Hartl
On Jan 25, 8:12 pm, carvingcode [EMAIL PROTECTED] wrote: Thanks, Klaus!  I know exactly when I added that.  Surprised Aptana didn't notice it... On another note, any suggestions on where I could best start to get the tabs located better within IE?  I'm currently using the unmodified

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-26 Thread Mike Alsup
return e.srcElement || e.currentTarget || e.target; That still doesn't work in Safari though, does it?

[jQuery] Re: Is there a .new() ?

2008-01-26 Thread David Serduke
Actually I was just thinking about this and I'm not positive which is faster either but I think not using attr would be. And I'm not sure the speed difference is significant, so take all this with a grain of salt. :) It might actually depend on what type of element is being created too. Some

[jQuery] Re: howto properly rebind hover

2008-01-26 Thread David Serduke
Looks like you already figured it out but yes, with 1.2.2 hover now binds mouseenter and mouseleave. Also unbind('hover') shouldn't do anything since hover() is a helper function not an actual event so that part shouldn't be necessary. David On Jan 25, 6:18 pm, h0tzen [EMAIL PROTECTED] wrote:

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-26 Thread David Serduke
On Jan 25, 3:27 pm, Rus Miller [EMAIL PROTECTED] wrote: 1. JQ 1.2.2 Interface.SlideToggleUp: After the SlideToggleUp event, Firebug started logging a string of errors and the script crashed in both FF and IE: this.options.curAnim has no properties

[jQuery] Re: Announce: clueTip Plugin update (0.9.5)

2008-01-26 Thread Mike Alsup
This is awesome, Karl! Great work. Mike On Jan 25, 2008 3:09 PM, Karl Swedberg [EMAIL PROTECTED] wrote: Hi everyone, Wanted to let you know that I released a new version (0.9.5) of the clueTip plugin at http://plugins.jquery.com/project/cluetip/ Here is a list of the changes since the

[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Michael J. I. Jackson
Scratch that...I've got it worked out now...ugghh... On Jan 25, 2008, at 10:42 PM, Michael J. I. Jackson wrote: Hmm...one email to the jQuery mailing list and an obscure post in the Ext.js forums and 20 hours and 687 downloads later I've exceeded my bandwidth. ;) Bummer...

[jQuery] Re: problem with .attr(alt);

2008-01-26 Thread Yansky
I think it's because children() returns an array, so you may have to use .children(img.text:first) or .children(img.text).eq(0) On Jan 26, 7:10 am, tsr [EMAIL PROTECTED] wrote: Hi, I'm trying to create a dynamic rollover effect for a client, but I just can't get my code to work, don't really

[jQuery] change error message

2008-01-26 Thread Kayed Qunibi
hi all, im using this approach in validation class=required on the element form action= method=POST id=formEdit input class=required type=text name=name input type=submit name=clicker value=click /form script $(document).ready(function(){ $(#formEdit).validate(); }); /script it

[jQuery] Re: problem with .attr(alt);

2008-01-26 Thread tsr
Sorry to bump this, but anyone? (I can solve this in another way, but it much more complex) /tsr

[jQuery] Re: jquery xml help

2008-01-26 Thread Yansky
I'm not 100% sure what you're try to do, but here's what I might do: UI.dsAnchor = function(UI.item, UI.sortBy){ $.get(projects/datascapes.xml, function(xmlData){ return $(xmlData).find(UI.sortBy+'[title=' + UI.sortBy + ']// item:contains(' + UI.item + ')'); }); } I have no idea

[jQuery] .html(val) not working in ie6 7

2008-01-26 Thread mickyjtwin
I am doing an ajax post, whereby I am returning an xml document that has html in it. I grab the html text, and the use .html to replace an unordered list. This works fine in FF, but ie6 and ie7 just show the last li elements text... $j(xml).find('Response').each(function(){

[jQuery] http://jquery.com/api/ page broken

2008-01-26 Thread Yansky
The http://jquery.com/api/ page doesn't seem to be working for me. When I click on a link, nothing happens. I'm using Firefox on Windows XP.

[jQuery] Odd behaviour of image.load()?

2008-01-26 Thread Sebioff
Hi, I'm having some troubles using the load() event for images, since it seems to behave totally different in every browser... What I try to do is: - fade an image out - load another image (or the same again) - fade the image in as soon as it's finished loading Heres the code I use for

[jQuery] Re: ajax variable scope (?) problem

2008-01-26 Thread Zhami
The problem is that the ajax success function runs asynchronously. In it, you refer to the variable id. So, when that function runs, it uses the latest value of id, not the value of id when the click event happened. Another way of handling the situation is to have your deleteprivatemessage return

[jQuery] Populate Form Values with Json returned Ajax call

2008-01-26 Thread MikeP
I do an ajax call to load a form. The data is returned via json. What's the best way to mass populate the form without setting each id...one by one? Also, does this mean that I would need to name my form fields the same as the database field names? Thanks, Mike

[jQuery] Re: Tabs stopped working in IE

2008-01-26 Thread carvingcode
It seems you're using a pretty outdated style sheet. You need to download the latest one, that'll fix a bunch of browser issues... I thought I had current a version. Where do I find the most recent?

[jQuery] Re: Shadowbox Media Viewer

2008-01-26 Thread Michael J. I. Jackson
Hmm...one email to the jQuery mailing list and an obscure post in the Ext.js forums and 20 hours and 687 downloads later I've exceeded my bandwidth. ;) Bummer... Well...while I look for new hosting, anybody who is still interested in getting this code can get it from Google Code (where it

[jQuery] Re: problem with .attr(alt);

2008-01-26 Thread tsr
Sorry to bump this, but anyone? I've been trying to search for .attr but I found nothing relevant. /tsr ps. I would also like to know if I'm breaking protocol on this list, just let me know, ok?

[jQuery] Re: Is there a .new() ?

2008-01-26 Thread Eli_Cochran
Hi folks, I was mulling over both those two DOM instantiation patterns just this week. Has anyone actually run that test? I'm curious what the numbers were. There is this delightful feel of control and power in $(input type='hidden'/).attr({id:myid, name:myname}).val(foo).appendTo(this);

[jQuery] Someone who can help me about multi select

2008-01-26 Thread Xinhao Zheng
hi all, Is there a plugin for multi select?I think we often need a pop up,multi select plugin,if it can write back the selected thing back to input field or support tree view. Anyone can give me some idea if there already exist one?Thanks in advance! George

[jQuery] Re: change error message

2008-01-26 Thread Kayed Qunibi
ops i found it :) put tilte='you text' on on the element you want to validate. thanks On Jan 26, 2008 5:11 PM, Kayed Qunibi [EMAIL PROTECTED] wrote: hi all, im using this approach in validation class=required on the element form action= method=POST id=formEdit input class=required

[jQuery] Make money online so easy

2008-01-26 Thread mona samy
Step by step make free money online Click Here http://smarts-way.info/main

[jQuery] Re: Reloading contact page in tab - using UI.TABS

2008-01-26 Thread carvingcode
I opted for the separate login page. Main page auto redirects if a session var is not found.

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-26 Thread Michael J. I. Jackson
Hi Nico, I just got finished updating the script. You hit the nail on the head, but I fixed it in a slightly different way. I updated the examples page accordingly. Thanks, Michael On Jan 25, 2008, at 10:24 PM, Andronicus Riyono wrote: On Jan 26, 2008 4:33 AM, Rick Faircloth [EMAIL

[jQuery] jQuery/JavaScript Jobs

2008-01-26 Thread John Resig
Hey Everyone - I just posted a whole bunch of JavaScript/jQuery jobs to my blog, in case anyone is looking for work: http://ejohn.org/blog/javascript-jobs/ Hope this helps! --John

[jQuery] Re: Can't get new Shadowbox plug-in to work. :o(

2008-01-26 Thread Rick Faircloth
Hey, Michael... How do I get the Next Previous Close to show up at the bottom of the page. I couldn't see instructions for that. (My eyesight is getting bad so that could be the problem. :o) Thanks, Rick -Original Message- From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED]

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-26 Thread Rus Miller
David, you're right about Interface. It has problems, but then so does Mootools as I found out when I hooked it up to the test page (it won't un-toggle, something to do with the height of the element not being 0 I think). Also, after running test after test with different styles and markup I

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-26 Thread Charles K. Clarkson
Yansky wrote: : The http://jquery.com/api/ page doesn't seem to be working for me. : When I click on a link, nothing happens. : : I'm using Firefox on Windows XP. Works for me on Firefox 2.0.0.11 and XP. It's a little slow loading at first. Clicking on a link slides down the detail. HTH,

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-26 Thread Yansky
Hmm weird. I tried it in Opera on my machine and Firefox and IE7 on another machine and it didn't work with any of them. On Jan 27, 8:58 am, Charles K. Clarkson [EMAIL PROTECTED] wrote: Yansky wrote: : Thehttp://jquery.com/api/page doesn't seem to be working for me. : When I click on a link,

[jQuery] Re: slideToggle weirdness - also Easing question

2008-01-26 Thread David Serduke
I've never used any of them so I don't know their state but I know people have been adding fx here: http://dev.jquery.com/browser/trunk/fx Just FYI. :) David

[jQuery] Re: http://jquery.com/api/ page broken

2008-01-26 Thread John Beppu
It works for me on Firefox 2.0.0.11 and Linux. On Jan 26, 2008 3:49 PM, Yansky [EMAIL PROTECTED] wrote: Hmm weird. I tried it in Opera on my machine and Firefox and IE7 on another machine and it didn't work with any of them.