[jQuery] JQuery vs prototype
> what benefits of JQuery vs prototype?(http://www.prototypejs.org/) In reality, most js frameworks offer similar core functionality. What you're usually comparing is syntax and general coding approach, which vary quite a bit based on personal preferences. All frameworks are going to let you add a class to an element, for example, and all should do it without any problems. I think the key differences between jQuery and Prototype are: 1) Prototype encourages a class-based structure, which IMO is not
[jQuery] Field Has no Properties
I have a question about autocomplete (interface)... and ajax form binding when I load a form (which has an autocomplete input) using Ajax ($.get), I get the error: field has no properties. the weird thing, when I 'inspect' the field using firebug, it works So I guess until the form is "inspected" it is not loaded in the DOM or something... any ideas are welcome... -- Abdallah Deeb _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] PEAR using jQuery...
Just wanted to share... c",) knock..knock, Rey kindly add to the site list in case not yet included. excerpt: Anyways, the first point I wanted to make in this post was: - http://pear.php.net is now using jQuery for some sections of the administration area in order to view user notes/comments and that I will be starting implementing more sections over the site within the next few weeks (Of course this will all be done once we have split the code completely into templates, views, controllers, MDB2
[jQuery] Move to an anchor
Can I move to an anchor with jQuery? I.e. the equivalent of what the browser does with: <a href="#footer">footer</a> -- Peter Bengtsson, work www.fry-it.com home www.peterbe.com hobby www.issuetrackerproduct.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Help with the contextMenu plugin
Hi, I'm using the great contextmenu plugin and wonder how I can update/re-init it on the fly ? I'm not sure if the code below makes any sense but basically, what I want to do is to get a new menu value from a input-text field, add it to the context-ul-menu and then re-init the contextMenu plugin. I can't get it to work though. Perhaps someone has got a working example or something. Cheers, Tobbe # Some Javascript <script> // Setup bindings object for the contextMenu plugin var tpl_owners = new Object();
[jQuery] Star Rating Plugin Tutorial?
Hi, Is there a star rating plugin tutorial around? I have it all working fine in test docs but I have questions about production implementation that I'm hoping are already answered in a tutorial so I don't need clog the list with it. :) Thanks, Will _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Disable enter button submitting form
The reason being that when I have an autocomplete field the user will start type something in the field and can arrow down and hit enter when on the selected item. However, if they have "outtyped" the field and there is no option select (none returned in the autocomplete) they are hitting enter by habit from that field and inadvertently submitting the form. So really, I only need it disabled so long as they're in the autocomplete field.
[jQuery] Same-site Restrictions on Ajax: Does $.getScript help?
Hi. I want to make a remote request to a different server than the current page is hosted on, in order to get JSON data (padded with a callback). This is typically handled by inserting <script> elements on the current page with the src as the remote URL, (Right?), but I couldn't find an easy way to do this on jQuery. I looked at $.getScript; but it's more a way to use XmlHTTPConnect(), and eval the results as a script. Does anyone have any ideas as to how one may go about this?<br clear="all"> --
[jQuery] DED|Chain - jQuery mentioned shortly
"DED|Chain is free open source software (BSD License) that will allow you to build first class, high-quality websites without the cruft. You get the reliability of Yahoo! UI, and the developer friendliess of jQuery. " http://dedchain.dustindiaz.com/ -- Mika Tuupola http://www.appelsiini.net/~tuupola/ _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] ThickBox for Mephisto - jQuery and Rails
I just wrote a small macro for the Rails based blogging system Mephisto. Macro utilizes Cody Linley's excellent ThickBox. Those who are interested check url below: http://www.appelsiini.net/~tuupola/434/thickbox-macro-for-mephisto -- Mika Tuupola http://www.appelsiini.net/~tuupola/ _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] How do I write this CF code in JS?
Hi, all.. How do I write this CF code: <CFIF IsDefined("Form.Principal")> </CFIF> in js? Rick _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Disable enter button submitting form
<HTML> <HEAD> <TITLE>Re: [jQuery] Disable enter button submitting form</TITLE> </HEAD> <BODY> <FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>Except that they’ll need to submit the form when the click the submit button. I just don’t want them submitted the form when they hit enter on the keyboard.<BR> <BR> <BR> On 3/26/07 4:51 PM, "Chris Domigan" <cdomigan@gmail.com> wrote:<BR> <BR> </SPAN></FONT><BLOCKQUOTE><FONT FACE="Verdana, Helvetica, Arial"><SPAN STYLE='font-size:12.0px'>I
[jQuery] Disable enter button submitting form
Is it possible to prevent a form from being submitted when the user clicks enter? _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] google groups
hey... quick question... is the list now officially on google groups now? thanks _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] google takes over my error div!!!
hey. when google toolbar is activate and im using form validation, when i have some error div, its instad of writing my own message its writes : "your google toolbar can fill this in for you select autofill" errrr anyone knows how to fix it? -- View this message in context: http://www.nabble.com/google-takes-over-my-error-div%21%21%21-tf3446124.html#a9610202 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] best practices / using jquery in functions
hello all- I'm new to jquery, and a novice javascript coder with a basic working knowledge of OOP from java. I'm trying to create some animated boxes for a client page- right now, i have a basic motion test with placeholders just to see how this would work here: http://inforetail.com/motiontest/ You can look at the page to see the BASE behavior I'm looking for. And If you take a look at the code, it's nasty- I've got a series of statements tied to custom click events for each link, which act on each
[jQuery] Quality control for plugins
hello, we have a lot of plugins at: http://docs.jquery.com/Plugins, however, many of them didn't follow the plugin guidlines, e.g. 1. use of $ instead of jQuery 2. missing ; any plan to control them? e.g. removing direct links from the plugin page? howa _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Quality control for plugins
>- javadoc commenting of plug-in external interface Using what tool? jsDoc? I've found that jsDoc works great for class-based structures, but not so well for stand-along functions or library interfaces like jquery plugins. There should be some standard javadoc-style syntax, but not necessarily exactly as used in jsdoc. In any event, I think all plugins should certainly have embedded API documentation, and the jquery.com site itself should be able to present each plugin's API docs in the same format,
[jQuery] Rounded Corners with Drop Shadow
<a href="http://www.ruzee.com/blog/shadedborder">http://www.ruzee.com/blog/shadedborder</a> Reported on Ajaxian. It says it's jQuery friendly although it doesn't look like a plugin. Question: Does it make sense to jQuerify a script like this if it's jQuery friendly already? What benefit could be gained? Smaller? Faster? Better integration with other effects? It looks pretty nice though. Glen _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] How To make thickbox not resize the image, scroll instead?
I've got a problem. I already implemented thickbox on a live site. The image has small text in it... if the images resizes to fit the window the text becomes unreadable. How do I make the thickbox scroll with the image shown at 100% of it's actual dimentions, and not resize it to fit the window? I'm guessing it might be easy something in the CSS, but I've tried a few things and can't get it. Cody credits Christian montoya with the improvement, maybe I need the old CSS or functionality? Thanks, ty
[jQuery] hoverIntent r3 -- animate vs. hoverIntent
I've re-written hoverIntent since the last time I posted. It now has configurable options, a mouseOut timeout, and is $-friendly. However, not all is good in the land of hoverIntent. I've been struggling with this one bug for a while (hence the delay since my last update) and I've finally (sucked up my pride and) decided to approach the list for help. I have some example code on my web site that explains the problem in detail. <<a href="http://cherne.net/brian/resources/jquery.hoverIntent.html">http://cherne.net/brian/resources/jquery.hoverIntent.html</a>
[jQuery] Quality control for plugins
you know what else would be nice in this "standard interface"? An include of a search from the jQuery archives of any discussions related to that plugin. ----- Original Message ---- From: Matt2012 <matt2012@gmail.com> To: discuss@jquery.com Sent: Monday, March 26, 2007 5:01:31 AM Subject: Re: [jQuery] Quality control for plugins I wonder if its worth having a standard interface for plugin support pages. i.e. the jquery form plugin (http://www.malsup.com/jquery/form/) is a great example with getting
[jQuery] Get form name on button click
I have a form template that is shared among numerous forms. I need to modify the ajax response content depending on the form used. When a button is clicked, what is the best way (w/ jQuery) to get the name of the button's parent form? Thanks, Brad Perkins _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] n related select boxes
I'm referring to form select dropdowns where you select an option from one, and get filtered results in the next, and so on. This is an example (and done with jQuery): http://remysharp.com/wp-content/uploads/2007/01/select.html Does anyone else have one that might be more efficient (not saying this one isn't, just looking for options). ____________________________________ Andy Matthews Senior Coldfusion Developer Office: 877.707.5467 x747 Direct: 615.627.9747 Fax: 615.467.6249 amatthews@dealerskins.com
[jQuery] Taconite Plug-in Question...
Hi, gang... Can there be more than one set of <taconite></taconite> tags on a single page? Rick _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Beta Testers needed for Form Plugin file upload support
Great! I used ajaxupload.js before and made the decision which plugin to use on my own, which forced me to use two plugins for forms. Tested with Firefox 2.0.0.2 (Windows 2000). Tonight I will do additional tests with IE7 (Windows XP). Harald
[jQuery] getting the selectedIndex of a dynamic select
<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xmlns="http://www.w3.org/TR/REC-html40"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=Generator content="Microsoft Word 11 (filtered medium)"> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="City"/> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
[jQuery] n related select boxes
<!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.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=363421113-26032007><FONT face=Arial size=2>Does anyone have some jQuery code for n-related select boxes that they might be willing to share? I'm going to Google and check the plugin page now, but wanted to ask on the list as well.</FONT></SPAN></DIV> <DIV> </DIV> <DIV align=left><SPAN
[jQuery] jQuery Book?
Just wondering if anyone has any information on the 'jQuery Book' rumours, Any idea's whats inside and when its due, cheers <br clear="all"> -- -- Jack Gleeson Web Developer <a href="http://www.jackgleeson.co.uk">www.jackgleeson.co.uk</a> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] A suggestion for the jQuery website - current version number on front page
<!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.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=114061313-26032007><FONT face=Arial size=2>A week or two ago, I was trying to find out what the current version of jQuery was and I couldn't find it. Maybe something in that nice blue box at the top right corner?</FONT></SPAN></DIV> <DIV><SPAN class=114061313-26032007><FONT
[jQuery] select box - options manipulation
i have a "DIV.selection" tag and inside SELECT with OPTION tags. using jquery i can find and manipulate options with $('div.selection').find("option").each and similar but i can't bind events for option onclick events in IE7 (haven't looked IE6, firefox works). so i'm looking for a way to manipulate option tags in select box and catch events. is there any way to do this for any browser? simple examples appreciated. Aljosa _______________________________________________ jQuery mailing list discuss@jquery.com
[jQuery] base href and jQuery
I've read some posts about getting a <base href="..."> to work with javascript (not sure if it works). Is it possible for jQuery to recognize it? Adam -- View this message in context: http://www.nabble.com/base-href-and-jQuery-tf3466550.html#a9671726 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] callback + scope
<html><head><style type="text/css"><!-- DIV {margin:0px;} --></style></head><body><div style="font-family:times new roman, new york, times, serif;font-size:12pt">Is there a reason why so few toolkits include a parameter in their ajax and other functions that take a parameter for scope in addition to the callback function? For example, Yahoo's Ajax utility allows us to specify an object as the scope for the callback function which they then use like this: callback.call ( scope , ... ) otherwise the
[jQuery] page title + ajax + search engine problem
Hi, I am not sure whether this is the right place for putting this question. However, since it is concerned with ajax and jquery, I will take my chance. My problem is I am using ajax to load content in the main div of my webpage. I use javascript to dynamically change the title of the webpage. Now the problem is when googlebot tries to index my webpage, it ignores javascript and thus my webpage is registered without page title. Is there any way to use jquery on the server side and change page title
[jQuery] Learning jQuery, the Book
<HTML><BODY style="word-wrap: break-word; -khtml-nbsp-mode: space; -khtml-line-break: after-white-space; "><BLOCKQUOTE type="cite"></BLOCKQUOTE><BLOCKQUOTE type="cite"><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 0px; ">Karl Swedberg schrieb:</DIV><BLOCKQUOTE type="cite"><DIV style="margin-top: 0px; margin-right: 0px; margin-bottom: 0px; margin-left: 10px; ">When that jQuery book comes out, I hear it's going to have an awesome </DIV><DIV style="margin-top: 0px;
[jQuery] Is the JQuery slowest?
Please check this: http://homepages.nildram.co.uk/%7E9jack9/base2/speedtest/ -- View this message in context: http://www.nabble.com/Is-the-JQuery-slowest--tf3448821.html#a9618984 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Move to Google
I did some searching in the Google group, and it looks like any delayed posts that were re-sent in Nabble are posted as duplicates in Google. Just thought you should know. Adam -- View this message in context: http://www.nabble.com/Move-to-Google-tf3465706.html#a9669375 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Gurus - best Javascript references?
I have no formal programming training, so I often brute-force things that could be a lot more elegant. One thing I'm struggling with in particular now is the benefits of creating object prototypes over just storing data in a global tree. A few people on this list have taken a shot at explaining some of this to me, and thank you very much for that, but it's just not sinking in which is unusual and frustrating. Can you all tell us what books are good for advanced Javascript reference? Closures,
[jQuery] JS loading problem with FF
Hi I got a little problem on a site I'm working on, the problem is that in FF, it mostly takes for 15sec for some files to load, and I get this error after load: illegal character http://www.haddock.ffs.gu.se/js/default.packed.js Line 1 A ɲý+J‰çÿi3 É @ò{ÉT¬"ß5•˜% (c)ñqvŒ°vq F'] ÆuA\n The problem does not appear in IE7. I got two .js files one for admin-only functions and one general, and the problem only occurs with one file per page load. Occasionally it loads perfectly. Anyone had similar problems
[jQuery] jqupload tweak + forms plugin
hey... my brother did some tweak to the jqupload script : http://tal.tl/javascript/my-jquploader-upload-images-php-ajax-flash.html is it possible to integrate it with the forms plugin? cause i saw that there is no support for it.. -- View this message in context: http://www.nabble.com/jqupload-tweak-%2B-forms-plugin-tf3446353.html#a9610890 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
Next Page