[jQuery] Another jQuery powered Site
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" 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 12 (filtered medium)"> <style> <!-- /* Font Definitions */ @font-face {font-family:"Cambria Math"; panose-1:2 4 5 3 5 4 6 3 2 4;} @font-face
[jQuery] (OT) DED|Chain
I just saw this as I was browsing delicious. It seems to be another new library. It's based on YUI & has "the developer friendliess of jQuery". http://dedchain.dustindiaz.com/ -- View this message in context: http://www.nabble.com/%28OT%29-DED%7CChain-tf3437899.html#a9585995 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] loading js files at the bottom of the page
Do you guys think loading js files at the bottom of the page would make the page load faster? -- Kush Murod, Web applications developer Sensory Networks [E] kmurod@sensorynetworks.com [W] www.sensorynetworks.com [T] +61 2 8302 2745 [F] +61 2 9475 0316 [A] Level 6, 140 William Street East Sydney 2011 _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Plugin released: textify. PROBLEMS UNSOLVED
Hi everyone. Finally I'm releasing the plugin I've been so busy developing in the last month. <a href="http://scriptinverse.com/textify/">Textify (see homepage)</a> It's a function that transforms a regular iFrame element into a text editor and I hope it will serve everyone who needs it well. Think of all the possibilities: email applications, blog, forums, maybe chats... First thanks to everyone who helped me in developing this plugin (see acknowlegments in the webpage). Now, and this is making
[jQuery] Unbind Hover
Hi, I noticed a slight idiosyncrasy when using unbind with 'hover', for example: $('div.item').hover( function() {}, function() {}); //works fine $('div.item').unbind('hover'); //in IE6/FF, this unbinds ALL events To get it to work correctly, one would have to do: $('div.item').unbind('mouseover').unbind('mouseout'); While this isn't a major problem, it would be more consistent if you could unbind hover directly. Cheers, Evan -- View this message in context: http://www.nabble.com/Unbind-Hover-tf3438517.html#a9587729
[jQuery] (OT) DED|Chain
<html xmlns:v="urn:schemas-microsoft-com:vml" 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" xmlns:ns0="urn:schemas-microsoft-com:office:smarttags"> <head> <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"> <meta name=Generator content="Microsoft Word 11 (filtered medium)"> <!--[if !mso]> <style> v\:* {behavior:url(#default#VML);} o\:*
[jQuery] Validation and hidden fields problem
I have a load of elements in a form hidden until the user activates it. I am using something like this: <div class="hidden"><input type="text" class="required" /></div> <div><input type="text" class="required" /></div> where the first div is hidden. I also have a required class on each element for validation purposes. This works like this: $('.required').each(function(i) { if ($(this).val() == "") { var msg = $(this).attr("title"); showErrorMsg($(this).parent(), msg); } }) I validate on submit
[jQuery] Hierarchical Dropdown menu?
I've searched the Nabble archive and looked at some of the plugin listings but haven't found what I'm looking for. Is there a JQuery implementation of a hierchical dropdown menu? I'm looking for something that could replace an existing user interface that has multiple <select> menus that provide a drilldown interface with a single hierarchical menu. Thanks, Brad _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] [JQuery] Attribute selector
Hi, I'm having a bit of a problem with the attribute selector in jquery. Given html like: <form> <input name="one" type="text"/> <input name="two" type="text" check/> <input name="three" type="text" check="bla"/> </form> my javascript $( "[@check]", form).each( function() { } ); will only find "three", but not "one" (which I do not want to find) or "two" (which I do want to find). Am I misunderstanding something here? cheers, Magnús Örn Gylfason btw, using JQuery 1.1.2 _______________________________________________
[jQuery] Validation Plugin Beta 2 Bug - Radio Buttons
Dan, That fixed it. Now everything is working as expected. Thanks for the help. Ryan Rose Vice President Digiwize, Inc. One Technology Drive Tolland, CT 06084 e: ryan@digiwize.com p: 860.730.2631 http://www.digiwize.com -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of dswitzer@pengoworks.com Sent: Tuesday, March 20, 2007 11:27 AM To: 'jQuery Discussion.' Subject: Re: [jQuery] Validation Plugin Beta 2 Bug - Radio Buttons Ryan, You can fix
[jQuery] IE bug or bug in my code ?
In firefox the follow code works fine $(document).ready(function() { $(".form_con").hide(); $("select[@name=main]").change( function() { if($.browser.safari) { if(this.value != 0) $(".form_con").hide(); $("#form" + (this.value)).show(); } else { if(this.value != 0) { $(".form_con").hide(); $("#form" + (this.value)).fadeIn("slow"); } } }); }); But in IE the above code does not work, I thought it would be an issue with using swfobject with jquery buty I patched that up and the issue is still unsolved.
[jQuery] Docs for id and name functions?
I stumbled across some JQuery cheatsheets for an older version. In the DOM/Attributes section there were references to the id and name functions. I also found them in some code examples in this lists' archives. I don't see these in the latest online docs (1.1.2). Were these commands removed? If not, are these simply shortcuts for attr('id) and attr('name')? Thanks Brad _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jQuery breaks iframes and back button?
jQuery seems to cause unexpected behaviour in IE6 and IE7 when used in combination with iframes. In fact, it occurs without actually making use of jQuery, but just including it is enough. Here's the problem: I have two pages that each contain 2 iframes. For illustrative purposes, they will have the same contents: [container1.html and container2.html] <html> <head> <script type="text/javascript" src="jquery.js"></script> </head> <body> <iframe src="left.html"></iframe> <iframe src="right.html"></iframe>
[jQuery] anyone success to inegrate sortable with mysql/php?
> What is the jQuery interface going to look like? It will simply expose methods like .autosort() .autofilter() .autopage() .tablesort() .tablefilter() .tablepage() that hook into the jQuery syntax, either on document.ready or triggered manually. Ideally, I think the unobtrusive classname-driven functionality should be preferred, but the above style will be there in case more complex things need to be done. Are there any other hooks specifically into jquery that you think would be beneficial? Matt
[jQuery] anyone success to inegrate sortable with mysql/php?
>If something like AJAX DataGrid (http://www.phpclasses.org/browse/package/3610.html) can edit using AJAX, I'm sure some sorting can be done. Sorting via Ajax doesn't make much sense.
[jQuery] animating off screen
Hi, Yesterday I got some great help on how to animate a DIV and move it from offscreen left to the middle of the screen. My question now is I want to slide that div to off-screen right. The complication is that I don't know how big the user's browser is going to be. How can I slide the div completely off screen to the right? Thanks, - Dave _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] animating off screen
Thanks, Bryan. So if I want to get the viewable width of the screen, would I call Geometry.getHorizontalScroll? - Dave
[jQuery] Validation Plugin Beta 2 Bug - Radio Buttons
First I would like to say that this plugin is absolutely amazing
excellent work Jörn! Now on to my problem: I ve noticed that the validation plugin doesn t support radio buttons with name="data[FormItem][38]" specified. It will correctly validate the radio button group (for instance, if required=true if will display the error label indicating the field is required if a radio button was not clicked), however, it will not submit the form once a valid option is chosen. If I change the name to not use
[jQuery] Anyone ever heard of this Netscape bowser? ;)
So I had to give up on http://www.nabble.com/-%21jQ----But-need-help%3A-%22Object-doesn%27t-support-this-property-or-method%22-tf3413795.html this , and have resorted to an iframe for a unique situation. The iframe passes it's scrollHeight to setHeight() in the parent. setHeight(), you guessed it, sets the height of the iframe div to the scroll height. Everything works beautifully except in Netscape. The alert shows the height value is being passed, but nothing happens. // iframe height // function
[jQuery] NEWS: jQuery Powered PassPack.com on Ajaxian (Resend)
Ajaxian.com posts about another jQuery-Powered site: http://ajaxian.com/archives/passpack-new-version Check it out. Rey... -- BrightLight Development, LLC. 954-775-1111 (o) 954-600-2726 (c) rey@iambright.com http://www.iambright.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Validation Plugin Beta 2 Bug - Radio Buttons
<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=iso-8859-1"> <meta name=Generator content="Microsoft Word 11 (filtered medium)"> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="PostalCode"/> <o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
[jQuery] NEWS: jQuery Powered PassPack.com on Ajaxian
Ajaxian.com posts about another jQuery-Powered site: http://ajaxian.com/archives/passpack-new-version Check it out. Rey... -- BrightLight Development, LLC. 954-775-1111 (o) 954-600-2726 (c) rey@iambright.com http://www.iambright.com _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] New Window Handle?
I'm stumped. I'm opening another browser window to display a print friendly page. For the "print" window, I'm using JQuery to change the style sheet. I thought all I would have to do is use a css selector with the context of the "print" window. What am I doing wrong? Here's my code. print_win = window.open(window.location).focus(); $("div#class1", print_win.document ).css("display","none"); $("div#class2", print_win.document).css("display","none"); ... this is kicked off from an onclick event from
[jQuery] jquery.treeview.js
Hi. I am using jquery.treeview.js to display a tree. When I select a leaf of the tree, I send back the text using $(this).text() What I need though, is the text of all the previous nodes, so that I have a context for the information. Can anyone tell me how to get and send the information. Thanks, Peter _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] IE bug or bug in my code?
In firefox the follow code works fine $(document).ready(function() { $(".form_con").hide(); $("select[@name=main]").change( function() { if($.browser.safari) { if(this.value != 0) $(".form_con").hide(); $("#form" + (this.value)).show(); } else { if(this.value != 0) { $(".form_con").hide(); $("#form" + (this.value)).fadeIn("slow"); } } }); }); But in IE the above code does not work, I thought it would be an issue with using swfobject with jquery buty I patched that up and the issue is still unsolved.
[jQuery] DOM manipulation
Hey :-) Just trying to work out how in jQuery you would do something like (inside a function): var newDiv = this.parentNode.appendChild(document.createElement("div")); newDiv.appendChild(document.createElement('img')); Because this is in a function I'm trying to append the items to the object being passed (i.e. a parent div) using $('div').blah(); I'm having a complete mind blank so would appreciate any help. I'm guessing it's using the append() functions etc?? Thanks in advance Allan _______________________________________________
[jQuery] A few more plugins: crop, labelOver and pluck
http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#crop crop - crops an image on the fly http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#labelOver labelOver - the accessible way of compacting forms (ala alistapart.com/articles/makingcompactformsmoreaccessible A List Apart http://remysharp.com/2007/03/19/a-few-more-jquery-plugins-crop-labelover-and-pluck/#pluck pluck - utility plugin to collect array of attributes I've provided examples
[jQuery] TransferTo giving an error
I've been doing a redesign of my personal photo gallery website and I'm running into problems with the TransferTo function in the Interface Elements plugin. Here's the URL: http://www.levinephotos.com/Redesign/ When you click on the "Welcome to the new LevinePhotos.com. Click here to find out how to use it!" text, I want an instructional window to fly out. I've done this before on my work site's intranet and really liked the effect. Unfortunately, here it's giving me the following error: $(this).transferTo
[jQuery] Find first parent element with certain style
I'm having a bit of trouble figuring out how to do this. What I'd like to do is find the first parent element that has a background color that is not transparent. This is what I've tried so far, but with no success: $('.elemToFade:first').parents("[@style.backgroundColor != 'transparent']:first"); this also didn't work: $('#theDiv').parents().each(function(i){ if($(this).css("backgroundColor") != "transparent"){ return.this[0];} }); -- View this message in context: http://www.nabble.com/Find-first-parent-element-with-certain-style-tf3429157.html#a9558802
[jQuery] Plugin to move DIVs?
Hi, What is the most appropriate plug-in that will allow me to slide a DIV horizontally from off-screen to on-screen center? Thanks, - Dave _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Selector Help
Hello, I'm new to jQuery and I'm not sure if I have my selectors right and how to test. The first part of my JS (below) is working, but the 2nd part, the accordion stuff, is not. My relevant html and JS are below. div id="ancillary"> <div class="block first"> <div class="inside"> <div class="bar"> <h2>Recent Content</h2> <span><a href="#" class="pane_slider">open</a></span> </div> <div class="section"> <?php $hemingway->get_block_output('block_1'); ?> </div> <div class="clear"></div> </div> </div>
[jQuery] Plugin to move DIVs?
Thanks for this info. From reading the page, there is still one thing I'm unsure of. If you want your DIV to come in from left to right, (from off-screen to center on screen), what are the parameters that should be passed? Thanks, - Dave
[jQuery] Fancy Menu
Hi, Look this great menu : <a href="http://devthought.com/cssjavascript-true-power-fancy-menu/">http://devthought.com/cssjavascript-true-power-fancy-menu/</a> _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] How calculate two fields
Hi I have my form with value1 and value2 using: '#attributes' => array( 'onchange' => 'value1(this.value);', ) I dont need validate this form. Just Show results. case value1="X": result = 1000 * value2 break; .... I am newbie in Jquery. So How should I pick value1 and value2 and how I create my function function result(value1, value2) { I dont need validate my form just show result to my user "without user click in any button". Is it possible? Regards macm <br
[jQuery] History/Remote plugin and back to the first page
Hi, As I just mentioned in another thread, I've just launched this jquery based site: http://flashr.kelvinluck.com/ On it I am using the history/ remote plugin to add back button support. As you can see, this works well with one exception... When you go back to the page you originally landed on then the contents of the page doesn't change. So if you go to http://flashr.kelvinluck.com/ and click around a bit then the back and forward buttons will work fine until you go back as far as the homepage
[jQuery] halt script running
i got this code and i want that if : result.status == 0 - show the error div (its works) if its 1 then redirect to another page if its 2 (critical / unknown error) - stop exectue of this script and return alert right now its keep runing if i got status 2 ideas how to solve it? <script type="text/javascript"> $(function() { $().ajaxSuccess(function(request, settings){ alert('Done!'); }); $().ajaxStart(function() { $.blockUI( '<h1> http://crazilla.linuxlab/images/icons/loading/loading1.gif <BR> Just
[jQuery] TransferTo giving an error
The script tag in the header has 2 quotation marks at the end of the type attribute. Is that failing to load the script? -David -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Jason Levine Sent: Monday, March 19, 2007 7:35 AM To: discuss@jquery.com Subject: Re: [jQuery] TransferTo giving an error Nope. The upper case T isn't making any difference. (Besides having the error report on "TransferTo" instead of "transferTo".) -- View this message
[jQuery] bgiframe update, sneak peak
Okay ... I've got a sneak peak of the new bgiframe plugin here: http://brandon.jquery.com/plugins/_bgiframe/test/ This discussion started in the recent suckerfish plugin thread ... basically they ran into an issue where the expressions used by the bgiframe plugin slow down animations in IE6. This has been brought up before. Hopefully the flexibility provided by the new settings will help solve this problem and a few others. Notice that if you don't pass anything it acts just like it did before, which
[jQuery] Owner of "One Wishlist" Web Site Please Contact Me
Hi, I need the owner of the website "One Wishlist" (http://onewishlist.net/) contact me to verify where jQuery is being used on the site. Its currently on the jQuery Site List but I see no indication of jQuery being used on the site. If I don't hear from you by EOD today, I'm going to have to remove the listing at which point it can be resubmitted once we've verified where jQuery is being used. Thanks, Rey... jQuery Project Team -- BrightLight Development, LLC. 954-775-1111 (o) 954-600-2726 (c) rey@iambright.com
[jQuery] NEW Plug-in: cfjs (ColdFusionJavaScript)
Hi fellow jQuerians! I've just published a new plug-in that adds 42 handy ColdFusion functions to the jQuery object. The methods are designed to behave like their ColdFusion counterparts. Here's the list: Abs(number) ArrayAppend(array, value) ArrayLen(array) ArraySort(array, sort_type [, sort_order ]) ArrayToList(array [, delimiter ]) Ceiling(number) Compare(string1, string2) CompareNoCase(string1, string2) DateDiff(datepart, date1, date2) DecimalFormat(number) DollarFormat(number) Find(substring,
Next Page