[jQuery] Blurry Text using JQuery... But only in IE
Jason, I am not seeing the issue in either ie6 or ie7 on pc. Ben -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Jason Levine Sent: Tuesday, October 24, 2006 2:25 PM To: jQuery Discussion Subject: [jQuery] Blurry Text using JQuery... But only in IE My company has an internal Portal system and I was planning on making some major changes to the functionality it offers by enhancing it with JQuery powered features. However, I've run into a
[jQuery] Updating multiple select fields at once
I've got a page which allows a user to set profiles for hours of the day. There are a LOT of dropdowns on this page and I've had some users which say they want to set all the dropdowns to a specific value. Setting them all manually would take a few minutes of time. So the users want to know if they can set all to a certain value at one time. I'm already using jQuery on this site for various things. I'm wondering if I can add one more dropdown which might read "Set all values to: [select box] [go]".
[jQuery] jEditable question
Hi all, I have recently discovered jquery and jeditable. When using jeditable, I discovered two things: - Using firefox 1.0.8 jeditable does not return. I can edit my text and the changes are saved in the database. However, after hitting the enter butting (and thus submitting the changes), the busy icon is show forever, it does not return. This is also true for the demos on jeditable the site. Does ayone know how to fix this? - Instead of a string, I would rather have some json structure returned
[jQuery] Updating multiple select fields at once
I got this taken care of. jQuery makes it SOOO easy. function changeAll() { var theValue = $('#setallvalues').val(); $('select').val(theValue); } <!----------------//------ andy matthews web developer certified advanced coldfusion programmer ICGLink, Inc. andy@icglink.com 615.370.1530 x737 --------------//---------> -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com]On Behalf Of Andy Matthews Sent: Tuesday, October 24, 2006 11:29 AM To: [jQuery]
[jQuery] Window Dialogues
Anyone know of any good movable, expandable and minimzable window dialogs (like <a href="http://prototype-window.xilinus.com/index.html">http://prototype-window.xilinus.com/index.html</a> for Prototype)<br clear="all"> -- Yehuda Katz Web Developer | Wycats Designs (ph) 718.877.1325 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Updating multiple select fields at once
How about something like this? jQuery.fn.selectOption = function(v) { return jQuery.each(function(){ for ( var i=0; i < this.options.length; i++ ) if ( this.options[i].value == v ) { this.selectedIndex = i; return; } }; }; $("#GlobalSelectGoButton").click(function(){ $("select"). not("#GlobalSelect"). selectOption($("#GlobalSelect").value()); }; I don't know what it would do with a multiple-select. If there isn't a matching value you might want to think about what it should do there; I just leave
[jQuery] jQuery and OOP
Mike's approach can be expanded to a complex ajax application. Closures and element properties are natural ways to associate instance data with elements in jQuery. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Kolman Nándor Sent: Tuesday, October 24, 2006 10:49 AM To: jQuery Discussion. Subject: Re: [jQuery] jQuery and OOP That is really nice and handy you wrote :), but I am writing a complex ajax application. I just created a simple
[jQuery] jQuery and OOP
That is really nice and handy you wrote :), but I am writing a complex ajax application. I just created a simple scenario to show what I want. So yes, I really need it. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Michael Geary Sent: Tuesday, October 24, 2006 4:23 PM To: 'jQuery Discussion.' Subject: Re: [jQuery] jQuery and OOP Do you really need an object at all? This (pun intended) would do the same thing as all the code you listed:
[jQuery] jQuery and OOP
Do you really need an object at all? This (pun intended) would do the same thing as all the code you listed: $(function() { var $btn = $('#btnCounter'), nr = 0; $btn.click( function() { $btn.attr( 'value', nr++ ); }); }); -Mike
[jQuery] url and uri
Can somebody explain me how to read url's uri whit jquery... I want to change thing when ?id=1 etc with jquery. Enquest _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Why do i need a delay in $(document).ready when using the center plugin ?
Hello again, i'm using the center plugin to center images inside a div. But i have to call it with a timeout like this: $(document).ready(function(){ setTimeout("doCenter()",1000); }); function doCenter(){ $(".jqcenter").each(){ $(this).center(); } } I do not really understand why i need a timeout here because DOM should allready be ready inside of $(document).ready(). The Problem with this is that it fails for some reason in certain cases, so that the image is misplaced. To me it looks like that
[jQuery] Expressions: Search for children within context
Hi jQueryians, how do I search for a children within a context? In other words, how to translate this: $(context).children("dt")... into something like this: $("/dt", context).... The latter one does unfortuanetely not work... -- Jörn Zaefferer http://bassistance.de _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] ajaxError and response content
hi, server responses with like status header 500 will trigger ajaxerrors. is it possible to get the response content of such errors? i think that would actualy be nice. so one could check these responses before falling back to a generic message as in the documentation example: $("#msg").ajaxError(function(){ $(this).append("<li>Error requesting page.</li>"); }); -robert _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] new plugin: SIFR (Flash Image Replacement)
Hi guys, http://gilles.jquery.com/sifr/ enjoy ;) It is not yet in SVN, because the original creator is working on version 3.0 while this code is based upon his 2.0 version. -- Gilles _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jEditable question
Barry, I've added some code to show an error message. Quite ugly solution though: I catch all returned text, and look for the following string '[error]', if it's found, I revert the form field text and alert the error. The trick is to format the error texts well (ie containing the search string). A more elegant solution would be something parameterized or something like JSON, but this worked for me: /* show the saving indicator */ $(self).html(options.indicator); $(self).load(settings.url, p, function(str)
[jQuery] OT: Anyone know of a good tree control
Hi guys, I'm looking for a good Javascript-based tree control that I can use for a project. I looked on the plugins page and didn't see any listed. If its JQuery-based, that's great but its not a requirement. It can be commercial or open source with open source being preferred. Rey... _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] scrolling window when draggable leaves viewport?
Hi there, is it possible to get a scrolling feature for any drag/droppable? For Example: If you leave the viewport with an object and the document body is longer or wider than the viewport, the document scrolls connected to the mouse position. You can see a good example at this YUI demo: <http://developer.yahoo.com/yui/examples/dragdrop/ontop.html?mode=dist> Is somebody working on it or did I miss it in the documentation? Or is there a simple way to implement this feature? regards ecki (maybe this
[jQuery] Is there a way to dynamically load jquery plugins
I would like to be able to load my jquery plugins dynamically as this would reduce the number of scripts in my document head. thx - S _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Is svn broken or having problems?
Hi all, Just tried to do: $ svn update svn: Can't find a temporary directory I googled for this and found a hint it my be the repository. I check that I do have /tmp and it is not full and it is writable. -Steve _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] $(".my_input").focus() shouldnt work?
hey guys, could u help me? this is my lines: $("#month").keypress( function(){ len = $(this).val().length; if(len == 1){ document.getElementById("day").focus(); } }); this firebug give me an error. if(len == 1){ $("#day").focus(); } this do nothing... what am i doing wrong _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Simple Example of adding animations to thickbox?
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=us-ascii"> <META content="MSHTML 6.00.2900.2963" name=GENERATOR></HEAD> <BODY> <DIV><FONT face=Arial size=2> <DIV><FONT face=Arial size=2>Does anyone have code they wouldn't mind sharing that adds a simple animation to thickbox? The documentation for thickbox says animations have been taken out of the latest versions of the code but that authors can add the ones they
[jQuery] Expressions: Search for children within context
> how do I search for a children within a context?
[jQuery] [feature request:] scrolling viewport when draggable leaves viewport?
Hi there, i would like to see a scrolling feature for any drag/dropable: when you leave the viewport with an object and the document body is longer or wider than the viewport the document scrolls connected to the mouse position. You can see a good example at this YUI demo: <http://developer.yahoo.com/yui/examples/dragdrop/ontop.html?mode=dist> Is somebody working on it or did I miss it in the documentation? regards ecki _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] nice plugin idea - Splitter
I just found this link http://www.jackslocum.com/yui/2006/08/19/a-splitbar-component-for-yahoo-ui/ Does a jquery version excist yet? Armand _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Style sheet modification snippet
Today I found the need to actually create a stylesheet and add rules to it instead of using the style property. The style property puts any of the styles inline and this really hurt my print styles. So, for a few styles in my site I used this snippet to actually add a style sheet and rules. It is a first draft and lacks a lot but thought I would share anyways. jQuery.style = function(selector, declaration) { if (!jQuery.style.sheet) jQuery.style.createSheet(); var s = jQuery.style.sheet; var n =
[jQuery] Is there a way to dynamically load jquery plugins
> From: Klaus Hartl
[jQuery] Is there a way to dynamically load jquery plugins
> I would like to be able to load my jquery plugins dynamically
[jQuery] Off topic : javascript css
Hello everyone, There is a thought that's flowing through my head for a few days. At work I did a autocomplete plugin. To style the suggestbox and the content I used a variable to fill the style attribute. Then it hit me many plugins use css to style their added elements. My question is, why use static css if it is useless when javascript isn't enabled? Isn't it better practice to include the css styles in the javascript code to keep the css files as clean as possible? I hope to get some feedback
[jQuery] New plugin: history/remote
Hi all, I made a new plugin: jQuery history/remote. http://stilbuero.de/jquery/history/ http://stilbuero.de/jquery/history/#remote-3 It's another one in the toolbox for all of you going for unobtrusive JavaScript and progressive enhancement. Test the page with JS disabled. The links point to existing resources and do still work. In this example the links point to simple html snippets, in real life you would probably return a complete page. Say you have constructed a page working in the old-fashioned
[jQuery] Off topic : javascript css
> What i understand from Brandon and Jörn, thank you for
[jQuery] Tabs plugin 2.0
> John is always in to leave some undocumented stuff
[jQuery] Off topic : javascript css
> $(function(){
[jQuery] HTML and XHTML
At the risk of sounding like a total noob, are there any situations with JQuery where XHTML is required (some DOM manipulation, maybe?) or do all functions/methods/plugins work in both HTML and XHTML? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Extended tabs in Thickbox iframe
Hello. I've run into a problem combining two plugins. When displaying a page that uses the extended tabs plugin jq-tabs v 0.9 (http://jquery.com/docs/Plugins/ExtendedTabs/) in an iframe created by Thickbox v.2.1, the tabs don't work, and I get this error: document.defaultView.getComputedStyle(this, "") has no properties Could this be a versioning problem? Suggestions appreciated. Thx -- Bruce http://www.2MinuteExplainer.com _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] New Plugin: Resizeable
Hi Stefan, Great work! Some feedback. In IE7, the panel border shrinks as you resize it and the text scrolls up. See the pic in the link for a better understanding of the issue. http://www.intoajax.com/images/resize.jpg Rey.. Stefan Petre
[jQuery] Form submission from thickbox iframe
I have a form page that loads in a thickbox iframe. I want to ajaxSubmit the form, close the thickbox, and update some elements in the parent window with the results of the Ajax call. But I'm having trouble coming up with the syntax for doing this. Hints/examples will be appreciated :-) -- View this message in context: http://www.nabble.com/Form-submission-from-thickbox-iframe-tf2490186.html#a6942457 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________
[jQuery] Test suite failures
> Are you running this on a local machine? I had a similar problem too
[jQuery] method/plugin for getting query string vars?
In Jörn's version of the code, you wouldn't call $.query() at all. Instead, $.query would be the resulting object that you would then use directly. Note that jQuery and $ are references to the same object, so jQuery.query and $.query are the same thing. I'm not sure I like this idea since it means the query parsing would be done whether you need it or not. But maybe it doesn't take enough time to worry about. If it does run all the time, it would be worth optimizing the code by using a conventional
[jQuery] jQuery Demo - Portlets
Here's a little demo I whipped up, just to show off the basics of jQuery, plus using the Interface sortables. I tried to approach the tutorial from the standpoint of designers, who might feel intimidated by JavaScript, but still want to get their feet wet. http://host.sonspring.com/portlets/ http://sonspring.com/journal/jquery-portlets -- Nathan Smith 208 348 2213 - work 859 229 9587 - cell http://sonspring.com _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] Image Cropping
Hi list, New to jquery and javascript in general and have to say, jquery has helped me a lot in my projects. Unfortunately, at this moment, I need an image cropping tool and have seen it done in javascript before and am wondering if any of you have done it with jquery. If so, mind giving me a bit of information on how I can do it, or a link to a plugin? Thanks, mrkris _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Next Page