Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Juan G. Hurtado
Hi again, El 26/01/2007, a las 8:38, Olaf Bosch escribió: Juan G. Hurtado schrieb: Hi all, I needed to use the jQuery rounded corners plugin in the project I'm working at the moment. But when I try to round more than one element, IE6 freezes, and I need to kill the proccess. After that, I

[jQuery] jQuery doesn't get along with old Prototype

2007-01-26 Thread Arrix
I'm writing a bookmarklet application using jQuery and it fails with any page that uses Prototype 1.3.1. I found that it's Object.prototype.extend that breaks jQuery. jQuery's extend method gets overwritten after the first call to jQuery.extend({/**/}). It's rare to use jQuery and Prototype 1.3.1

Re: [jQuery] jQuery doesn't get along with old Prototype

2007-01-26 Thread Blair Mitchelmore
This topic has been completely exhaustingly beaten to death by every single JavaScript conversation ever. The general consensus is that until customizable iterators in JavaScript 2.0 become widespread, avoid Object.prototype like the plague. All the other alternatives are too heavy to be worth

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Olaf Bosch
Juan G. Hurtado schrieb: Yes, it helps a lot, thank you. Now it doesn't freeze. But it doesn't look as good as the jQuery corner plugin, the text appears half cutted, and the corners are not clean. Ah, sorry, i have not see nifty-corner != corner-plugin Don't you know something about

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Su
Anyone? I don't mean to be that person who gets crabby at their message being ignored, but this is a pretty major consideration, and it seems odd to me that I can't find reference to it anywhere. On 1/23/07, Su [EMAIL PROTECTED] wrote: Preliminary searching hasn't turned up anything, so sorry

Re: [jQuery] Mobile application

2007-01-26 Thread Dan Atkinson
Aye. I happen to find the Windows Mobile SDK to be particularly useful. I don't know anything about apps for Blackberry's though, although they're slowly taking off here in England, I don't think much of them. I myself have a Windows Mobile and the Blackberry's just done match up in my opinion.

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Karl Rudd
Looks like a bit of an unwanted feature (from idrag.js): if (window.ActiveXObject) { this.onselectstart = function(){return false;}; this.ondragstart = function(){return false;}; } I'd file a bug against it. Karl Rudd On 1/26/07, Su [EMAIL PROTECTED] wrote: Anyone? I don't

[jQuery] Equal Height DT/DDs

2007-01-26 Thread Will Mo
Hi, Playing around with jQuery and thought I'd try to put together a 'table looking' definition list. I managed to get something to work in FF but IE6 doesn't seem to care what I think it should do. // equal height dt/dds $(dt).each(function () { ddheight = $(this).next().height();

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Su
You rule. Commenting out the two onselect instances(lines 491 500) took care of it, with no (currently) apparent side-effects. I'm a bit reluctant to call this a bug without input from the devs, though. At best it's probably more of a feature request to be able to specify not just a handle, but

Re: [jQuery] Equal Height DT/DDs

2007-01-26 Thread Su
Have you looked at the Vjustify plugin? http://michael.futreal.com/jquery/vjustify I don't think I see anything about it that specifically requires it be used on divs. A List Apart did an article last year on detecting text resize that might be of interest:

[jQuery] a bind function inspired by prototype's Function.prototype.bind implementation

2007-01-26 Thread yoav
was looking for an easy way to bind functions to objects when using jquery, and couldn't find any information about it. is there a reason for not implementing this? i found it very useful when using prototype. i've made my own implementation for jquery...it declares a bind function in the global

Re: [jQuery] Equal Height DT/DDs

2007-01-26 Thread Sam Collett
On 26/01/07, Will Mo [EMAIL PROTECTED] wrote: Hi, Playing around with jQuery and thought I'd try to put together a 'table looking' definition list. I managed to get something to work in FF but IE6 doesn't seem to care what I think it should do. // equal height dt/dds $(dt).each(function

Re: [jQuery] Giving up regular DOCTYPES

2007-01-26 Thread Klaus Hartl
Kristinn Sigmundsson wrote: It is always (if not then atleast almost always) possible to do thing like you describe without using custom attributes, BUT don't you think that arnauds example makes more sense, codewise? That way you can set the attribs easily ($(something).attr(selectableday,

Re: [jQuery] Equal Height DT/DDs

2007-01-26 Thread Will Mo
Thanks su! Yes, I've seen the vjustify plugin but I wanted to put something together myself to learn up. Again, I doubt I'd ever actually use it. I just realized that the code works just fine IE. I had forgotten to remove a console.log() and IE didn't appreciate it. I'll check out that ala

Re: [jQuery] Equal Height DT/DDs

2007-01-26 Thread Will Mo
Thank you Sam. Reading it now. On 1/26/07, Sam Collett [EMAIL PROTECTED] wrote: A List Apart has an article on text-resize detection that may be of some use: http://alistapart.com/articles/fontresizing ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] Equal Height DT/DDs

2007-01-26 Thread Luke Lutman
There's actually already a text-resize plugin for jQuery, called jQEm: http://davecardwell.co.uk/geekery/javascript/jquery/jqem/ I've got a stripped down version of the above that I use: http://jquery.lukelutman.com/plugins/emchange/jquery.emchange.js Have fun :-) Luke Will Mo wrote: Thank

Re: [jQuery] increasing itemVisible property is not resizing in Firefox

2007-01-26 Thread Jan Sorgalla
Sorry, for talking about Safari. Got confused with a comment on my blog about a similar problem. The width of the carousel is set to a fix width in the styles. Just set the correct width there (.jcarousel-scope etc.). Jan Jan Sorgalla wrote: Hi, nope, no problems in FF here. I don't have

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Paul Bakaus
Hi there! Since I'm writing the new draggables, I looked up many many solutions around that problem. It's a tough problem to fix text selection in a cross-browser matter, because you have strange side effects. For example, if you do ondragstart/onselectstart in IE, you select during drag if you

[jQuery] default / cancel button plugins

2007-01-26 Thread Sam Collett
These two plugins allow you to specify which button to click when either ENTER or ESC is pressed when focused on an input. http://www.texotela.co.uk/code/jquery/defaultbutton/ ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] blockUI Weirdness

2007-01-26 Thread Mike Alsup
What do you think of adding a third bool flag that if set, tells it to calculate the margin and dimensions? Gavin, How did you calc the dimensions in modalContent if there weren't any specifically assigned. Or would the bool flag imply that the new message has explicit dimensions that can

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Su
Please. I'd be interested in seeing this, in case there's a real problem here that I just haven't hit. My particular case is a bit limited and predictable, which I think potentially gives me a bit of safety here. While I do want selection within the body of the box, the handle is an image that

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Mike Alsup
IE6 freezes, and I need to kill the proccess. After that, I visited Damn, it sure does. I'll have a look at it Juan. ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Mike Alsup
IE6 freezes, and I need to kill the proccess. After that, I visited Damn, it sure does. I'll have a look at it Juan. Interesting. It's this call that causes the problem: var h = jQuery.curCSS(this, 'height'); Anyone know why that might be?

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Dave Methvin
Paul, you might try setting the unselectable=yes attribute in IE, or the -moz-user-select css property in Firefox. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Paul Bakaus Sent: Friday, January 26, 2007 7:54 AM To: jQuery Discussion. Subject: Re:

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Brian Miller
Is it this? http://meyerweb.com/eric/thoughts/2004/09/16/when-browsers-attack/ - Brian IE6 freezes, and I need to kill the proccess. After that, I visited Damn, it sure does. I'll have a look at it Juan. Interesting. It's this call that causes the problem: var h =

Re: [jQuery] Sliding menus

2007-01-26 Thread Gerry Danen
Thanks, Sholby. I will play with this. Gerry On 1/25/07, sholby [EMAIL PROTECTED] wrote: On 26 janv. 07, at 6:14, Gerry Danen wrote: Looked at the tabbed menus but that's not what I'm looking for. I like a vertical set of menus, that when clicked, shows sub-menus. I've seen it, want it,

Re: [jQuery] Mobile application

2007-01-26 Thread Gerry Danen
Blair, Do you have URLs? Thx Gerry On 1/26/07, Blair McKenzie [EMAIL PROTECTED] wrote: A very good place to start with this is to browse to the test suite on those devices. Blair On 1/26/07, Gerry Danen [EMAIL PROTECTED] wrote: I have been asked to put certain database apps online

Re: [jQuery] Mobile application

2007-01-26 Thread Gerry Danen
Thank you, Dan. On 1/26/07, Dan Atkinson [EMAIL PROTECTED] wrote: Aye. I happen to find the Windows Mobile SDK to be particularly useful. I don't know anything about apps for Blackberry's though, although they're slowly taking off here in England, I don't think much of them. I myself have a

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Brian Miller
This might be a better one: http://www.cameronmoll.com/archives/000892.html - Brian IE6 freezes, and I need to kill the proccess. After that, I visited Damn, it sure does. I'll have a look at it Juan. Interesting. It's this call that causes the problem: var h =

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Dave Methvin
That's strange. The version here works but it's using jQuery 1.0.4 plus it's a bit behind the one in SVN. So it's either a recent change to the plugin or some effect of jQuery 1.1. http://methvin.com/jquery/jq-corner.html -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [jQuery] Mobile application

2007-01-26 Thread Gerry Danen
I hope I was clear enough that I meant browser apps that go back to a php/mysql server for content delivery? The server part is no problem, just concerned about the client side and how capable their respective browsers are. gerry On 1/25/07, Gerry Danen [EMAIL PROTECTED] wrote: I have been

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Ⓙⓐⓚⓔ wrote: $(.button).bind( click, function(){ }); keeps everything associated with each individual button, throwing in a named function can easily hit some globals! and what is form_dirty? form_dirty is a boolean global that gets set it my pseudo-form get modified, so I

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Shane Graber - jQuery
I noticed the same thing when trying to implement it for a site and eventually gave up with the plugin. I ended up going to roundedcornr.com and used the corner images generated there + generated CSS and used jQuery to modify the DOM to accept the rounding: $(.round) .wrap(div

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread Paul Bakaus
Davin, I have tried all possible methods (at least that's what I think). I spent almost 3 days on that darn topic ;-) I will come up with some demos soon. Paul 2007/1/26, Dave Methvin [EMAIL PROTECTED]: Paul, you might try setting the unselectable=yes attribute in IE, or the

[jQuery] ajaxComplete ajaxError callback function parameters weirdness

2007-01-26 Thread Martijn ter Hellen
Hi all, I'm struggling with these global ajax callback handlers. The documentations states as follows: $(#msg).ajaxComplete(function(request, settings){ $(this).prepend('pSuccessfully loaded url: ' + settings.url + '/ p'); } ); Problem

Re: [jQuery] ajaxComplete ajaxError callback function parameters weirdness

2007-01-26 Thread Jörn Zaefferer
Martijn ter Hellen schrieb: I'm confused... imo the second and the third parameter are the request and settings variables. Am I missing something crucial? Or is this just a typo in the docs? It also applies to $('').ajaxError(). Looks like a bug to me. Either in the code, or in the

Re: [jQuery] ajaxComplete ajaxError callback function parameters weirdness

2007-01-26 Thread Mike Alsup
I'm struggling with these global ajax callback handlers. The documentations states as follows: $(#msg).ajaxComplete(function(request, settings){ $(this).prepend('pSuccessfully loaded url: ' + settings.url + '/ p'); } ); Those docs

Re: [jQuery] jQuery/IE sending duplicate parameter values

2007-01-26 Thread Graeme B. Davis
I just tested what you suggested and it worked for the getJSON, but it broke standard load calls (it didn't pass any values in IE). Any other ideas? Graeme -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Wednesday, January 24, 2007

Re: [jQuery] ajaxComplete ajaxError callback function parameters weirdness

2007-01-26 Thread Martijn ter Hellen
True, but the first argument (event) is not needed here, imho... So, one could also say the relevant code is wrong :P Martijn On 26-jan-2007, at 16:55, Mike Alsup wrote: I'm struggling with these global ajax callback handlers. The documentations states as follows:

Re: [jQuery] Giving up regular DOCTYPES

2007-01-26 Thread Andreas Wahlin
Isn't writing your own custom doctype like creating your own standard, and then you mights as well not follow any standard. I just put in a trigger class in the class attribute, then follow up every setting with json. div class=calendarday {selectableday: 1}24/div andreas

Re: [jQuery] jQuery/IE sending duplicate parameter values

2007-01-26 Thread Jörn Zaefferer
Graeme B. Davis schrieb: I just tested what you suggested and it worked for the getJSON, but it broke standard load calls (it didn't pass any values in IE). Any other ideas? Where exactly did you add the line? It should be inside the if that adds the paremters to the url. -- Jörn

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Rick Faircloth
Hey, Shane... I'm not a CSS guru by any means, so... what is a Vdiv? And... do you have a sample of this CSS rounding working online that I can view? Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Shane Graber - jQuery Sent: Friday, January 26,

Re: [jQuery] Giving up regular DOCTYPES

2007-01-26 Thread arnaud sellenet
This solution sounds nice. I'm not a custom attributes fan either, but for this case I hadn't found yet a way that could take advantage of the custom selectors :lt() and :gt(). Le 26 janv. 07 à 17:43, Andreas Wahlin a écrit : Isn't writing your own custom doctype like creating your own

[jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Rick Faircloth
Hi, all. I'm trying to implement a rounded corner effect found on http://methvin.com/jquery/jq-corner.html. Below is the entire page, html, css, jquery, and all. Does anyone see a problem with what I have that keeps the rounded corners from working? Everything seems to work fine, except the

Re: [jQuery] Giving up regular DOCTYPES

2007-01-26 Thread Klaus Hartl
Andreas Wahlin wrote: Isn't writing your own custom doctype like creating your own standard, and then you mights as well not follow any standard. I just put in a trigger class in the class attribute, then follow up every setting with json. div class=calendarday {selectableday: 1}24/div

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Sam Collett
On 26/01/07, Rick Faircloth [EMAIL PROTECTED] wrote: Hi, all… I'm trying to implement a rounded corner effect found on http://methvin.com/jquery/jq-corner.html. Below is the entire page, html, css, jquery, and all. Does anyone see a problem with what I have that keeps the rounded

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread tmcw
You have your javascript in style tags, not script tags. Rick Faircloth wrote: Hi, all. I'm trying to implement a rounded corner effect found on http://methvin.com/jquery/jq-corner.html. Below is the entire page, html, css, jquery, and all. Does anyone see a problem with what I

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Dave Methvin
Does anyone see a problem with what I have that keeps the rounded corners from working? You missed the important code on the demo page: script type=text/javascript // The code tags have the actual code, which is applied to the div $(document).ready(function(){

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Mike Alsup
Does anyone see a problem with what I have that keeps the rounded corners from working? You don't ever invoke the corner method. You need to add a script that causes the rounding: script type=text/javascript $('.demo').corner(); /script ___ jQuery

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Rick Faircloth
Doh! Thanks for pointing that out... must be the pain medication :o) I corrected that, but the result is still the same,,, square corners. Seems like almost all my attempts at working with jQuery are failing recently... sigh... Rick -Original Message- From: [EMAIL PROTECTED]

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Rick Faircloth
Good call, Sam... that worked. That shows how new I am to jQuery and javascript in general. It takes awhile to know all the parts that must be in place to make something work. I found that a lot of the demo's, even those written for newbies, like myself, assume knowledge that isn't there.

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Rick Faircloth
Thanks, Mike... that was the missing code! Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Alsup Sent: Friday, January 26, 2007 12:30 PM To: jQuery Discussion. Subject: Re: [jQuery] Anyone see why this code isn't working? Does anyone see a

Re: [jQuery] Anyone see why this code isn't working?

2007-01-26 Thread Rick Faircloth
Thanks, Dave! I never would have recognized the demo page code as necessary for the effect I was using. I thought I had gotten all the code off the demo page I needed! Rick -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dave Methvin Sent: Friday,

Re: [jQuery] Simple ajax script

2007-01-26 Thread peidor
[EMAIL PROTECTED] wrote: On 1/22/07, Lorenzo Bolognini [EMAIL PROTECTED] wrote: Fixed for cycle: for(i=0;i10;i++) { var results = $('#results').val() + $('#results').text(json[i].fields['city'] + br /);

Re: [jQuery] jquery.corner.js freezes IE6

2007-01-26 Thread Shane Graber - jQuery
Hey Rick: It's not Vdiv, it's a \ + /div. ;) The forward slash is used to escape various characters like a back slash, quotation marks, etc. Basically what the below script does is turn: div class=roundedCONTENT/div into: div class=roundedcornr_box_grey div class=roundedcornr_top_grey

[jQuery] Plugin Update: jdMenu 1.2

2007-01-26 Thread Jonathan Sharp
http://jdsharp.us/code/jQuery/plugins/jdMenu/ I've updated jdMenu with a few minor changes which includes a faster default menu delay and support for native jQuery 1.1.1. -js ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

Re: [jQuery] Draggables preventing text select in IE

2007-01-26 Thread bander
I should post a note too, since I originally filed that feature request ( http://jquery.com/dev/bugs/bug/479/ ). Yes, in my application, you're dragging around solid objects, as it were, and accidental selections in IE made everything look really weird. I agree, though, that the behaviour should

Re: [jQuery] Deserialize plugin and PHP mulitiselect format problem

2007-01-26 Thread Snook
BTW-- I'm still waiting a reply! I did hack a solution for the time being: $(form select).attr(name, $(form select).attr(id)); alert($(FormContainer + form select).attr(name)); $(form).deserialize(json.record); $(form select).attr(name, $(form select).attr(id) + '[]'); -- View this message

[jQuery] Firebug 1.0 released

2007-01-26 Thread Sean O
Just a heads up: the awesome debugger Firebug has come out of beta and is now '1.0'. http://www.getfirebug.com/ I find new features of this every day I use it. SEAN O -- View this message in context: http://www.nabble.com/Firebug-1.0-released-tf3124724.html#a8657369 Sent from the

Re: [jQuery] Deserialize plugin and PHP mulitiselect format problem

2007-01-26 Thread John Resig
If I had to guess, I'd say that when you serialize the data (using PHP) that you need to set the name to the actual name of the form field. So instead of: rel_doc_id:[30, 31, 288] You would do: rel_doc_id[]:[30, 31, 288] Since the deserialize plugin currently can't infer the weird PHP syntax,

[jQuery] onchange in Firefox

2007-01-26 Thread minh
Here's a simple little script that I have: $([EMAIL PROTECTED]).change(function(){ console.log($(this).attr('id')); }) I'm using Firefox 2.0 and when I select a value from the Firefox autocomplete list then tab to the next field the event is not trigger. If I enter a new value then the

Re: [jQuery] Changing a browser's starting page

2007-01-26 Thread Gerry Danen
All, Thanks for all your comments and suggestions. I ended up doing a registry edit via our login script. Works great. Gerry On 1/25/07, Gerry Danen [EMAIL PROTECTED] wrote: Found the key, Dan. Thanks for your help. Gerry On 1/25/07, Gerry Danen [EMAIL PROTECTED] wrote: On 1/25/07, Dan

Re: [jQuery] Changing a browser's starting page

2007-01-26 Thread Ⓙⓐⓚⓔ
Share the key with others, and so it can go down into the archives. You can't be the only person who will need this! On 1/26/07, Gerry Danen [EMAIL PROTECTED] wrote: All, Thanks for all your comments and suggestions. I ended up doing a registry edit via our login script. Works great. Gerry

Re: [jQuery] Firebug 1.0 released

2007-01-26 Thread Ⓙⓐⓚⓔ
all that and firebug lite for a little help debugging in IE and Safari and opera! On 1/26/07, Sean O [EMAIL PROTECTED] wrote: Just a heads up: the awesome debugger Firebug has come out of beta and is now '1.0'. http://www.getfirebug.com/ I find new features of this every day I use it.

Re: [jQuery] jQuery/IE sending duplicate parameter values

2007-01-26 Thread Graeme B. Davis
Oops, thanks for the clarification... It works beautifully now! Graeme -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jörn Zaefferer Sent: Friday, January 26, 2007 11:47 AM To: jQuery Discussion. Subject: Re: [jQuery] jQuery/IE sending duplicate

Re: [jQuery] Changing a browser's starting page

2007-01-26 Thread Gerry Danen
OK, This is the WinBatch code - see http://www.winbatch.com/ for product info: ; - change intranet.something to staff.something for IE users, but ONLY if it is intranet.something - ; 26 Jan 07 startpage = RegQueryValue(@REGCURRENT,Software\Microsoft\Internet

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Ⓙⓐⓚⓔ wrote: not 100% sure but something like that happened to me! mydata, gets re-used! that's why we use the weird case of $.extend() to make a fresh object instead of just using it var mydata = { check_dirty: 1 }; seems to get shared! var mydata =

[jQuery] jQuery Corner Plugin fixed

2007-01-26 Thread Mike Alsup
The IE6 bug in the corner plugin has been fixed. Apologies to anyone that was having a problem with it! You can get the latest rev here: http://jquery.com/dev/svn/trunk/plugins/corner/jquery.corner.js?format=txt ___ jQuery mailing list

Re: [jQuery] onchange in Firefox

2007-01-26 Thread Karl Swedberg
Hi there, Try .blur() instead of .change() and see if that works. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Jan 25, 2007, at 5:12 PM, minh wrote: Here's a simple little script that I have: $([EMAIL PROTECTED]).change(function(){

Re: [jQuery] selectbox plugin - take 2

2007-01-26 Thread Abdur-Rahman Advany
Have you taken this any further? I saw you have a http://cbach.jquery.com/demos/selectbox3/ directory but no updates since november... Christian Bach wrote: I have to do some more reading on how the original select element responds to different event to mimic it perfectly.

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Michael Geary
When you create a named function is is basically a static object stored in funcname of the scope it was defined in. when you declare a var in a function it is also a static object attached to the function object. As such mydata is a single static object and effectively a single object in

[jQuery] IE 6 error when using thickbox on a secure connection

2007-01-26 Thread ben
I have a site on an https://domain.com. When I click on a thickbox-enabled link in IE, I get an error that says somethings are secure, some are not. Is there a fix for this? Known issue? Thanks, Ben ___ jQuery mailing list discuss@jquery.com

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Michael Geary wrote: When you create a named function is is basically a static object stored in funcname of the scope it was defined in. when you declare a var in a function it is also a static object attached to the function object. As such mydata is a single static object and

[jQuery] Introduction to Firebug and jQuery, Screencast

2007-01-26 Thread John Resig
A new screencast is up that takes an introductory look at using the Firebug Firefox Extension and jQuery together - combining the two to build a reusable bookmarklet that can manipulate Digg Posts and Comments. The screencast is 14:39 Minutes long and 59MB:

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

2007-01-26 Thread Clodelio C. Delfino
thanks John... c,) On 1/27/07, John Resig [EMAIL PROTECTED] wrote: A new screencast is up that takes an introductory look at using the Firebug Firefox Extension and jQuery together - combining the two to build a reusable bookmarklet that can manipulate Digg Posts and Comments. The

[jQuery] Jcarousel in IFRAME

2007-01-26 Thread chango
People! how is it hanging!? I have a problem trying to do this: I'm using SubModal (like thickBox) to load a page that have the Jcarousel Plugin. SO, I'm using the Jcarousel Plugin inside an IFRAME (autogenerated by SubModal). the problem is that when i click on a image, the popup (autogenerated

Re: [jQuery] I broke it - Why is it doing this?

2007-01-26 Thread Stephen Woodbridge
Michael Geary wrote: I appreciate the correction. I was a little dumb founded by the only explanation that I could come up with and decided over dinner that I should test it out an verify it. I probably should have done that before posting. All the good thoughts seem to come after hitting

Re: [jQuery] Passing a variable as a class name to $(i want a variable here).hide()

2007-01-26 Thread chango
Hi, i use this for ID atributte all the time, i hope it help for your case: function toggle(className) { $('#'+className).toggle(); // this doesn't work obviously } ToddB23 wrote: Guessing this is a fundamental, and I have read the docs but... Can I pass a variable to JQuery to use as a

Re: [jQuery] Passing a variable as a class name to $(i want a variable here).hide()

2007-01-26 Thread Matt Stith
yeah, same idea, just use a period instead of a # On 1/26/07, chango [EMAIL PROTECTED] wrote: Hi, i use this for ID atributte all the time, i hope it help for your case: function toggle(className) { $('#'+className).toggle(); // this doesn't work obviously } ToddB23 wrote: Guessing

[jQuery] jQDOM - My entry into the jQuery DOM creation foray

2007-01-26 Thread Nate Cavanaugh
Personally, I didn't like any of the current DOM creation plugins out there for jQuery. So I created my own, and here it is :) http://www.alterform.com/resources/jqdom Examples and documentation are on the page, but a simple example of adding some dom Elements to the page:

Re: [jQuery] Changing a browser's starting page

2007-01-26 Thread Ⓙⓐⓚⓔ
thanks! while few of us run winbatch... I'm sure the keys will help any people who finds themselves in the same boat! On 1/26/07, Gerry Danen [EMAIL PROTECTED] wrote: OK, This is the WinBatch code - see http://www.winbatch.com/ for product info: ; - change intranet.something to

Re: [jQuery] Passing a variable as a class name to $(i want a variable here).hide()

2007-01-26 Thread ToddB23
Thank you - this will be a huge help to me moving forward. This solution works and more importantly I understand it so I can build off it. This is my first mailing list and so far, I dig ;- -- TB Matt Stith wrote: yeah, same idea, just use a period instead of a # On 1/26/07, chango

Re: [jQuery] Passing a variable as a class name to $(i want a variable here).hide()

2007-01-26 Thread Matt Stith
No problem! The jQuery community is very friendly, as you may have seen if you've lurked around at all, so if you have any more questions, feel free to ask! On 1/27/07, ToddB23 [EMAIL PROTECTED] wrote: Thank you - this will be a huge help to me moving forward. This solution works and more

Re: [jQuery] Mobile application

2007-01-26 Thread Blair McKenzie
http://jquery.com/test/ On 1/27/07, Gerry Danen [EMAIL PROTECTED] wrote: I hope I was clear enough that I meant browser apps that go back to a php/mysql server for content delivery? The server part is no problem, just concerned about the client side and how capable their respective browsers

[jQuery] comet

2007-01-26 Thread Glen
all, Are there any projects out there with the intent of providing comet functionality within jquery? -g ___ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/

[jQuery] [New Plugin] jqModal -- Minimalist Modaling with jQuery

2007-01-26 Thread Brice Burgess
I am aware that there's a few modal window plugins for jQ -- here's some in memory; Thickbox, Tweenbox, Greybox, and Gavin's jquery-modalcontent. I figured we needed another one ;) What I wanted was something extremely lightweight and flexible. jqModal weighs in at a whopping 3.2k and has no