[jQuery] ImageBox Problem - close and loading images not displaying
Hi I can't get the close and loading images to display and would like to know if that is a bug or a directory path problem on my part? If the latter I would like to know which directory Imagebox is expecting to find the files in? Thank you, Janet Weber _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] What's wrong with this code?
<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"> <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\:* {behavior:url(#default#VML);} w\:* {behavior:url(#default#VML);}
[jQuery] .next() bug?
The mark-up: <ul> <li></li> <li class="expandable"></li> <ul> <li></li> <li></li> </ul> </li> <li></li> </ul> The js: $('li.expandable') .bind('click', function(){ $(this).next().slideToggle('fast'); }) .next().hide() ; Now, my mark-up is wrong. I should have wrapped the nested <ul> in it's own <li>, but I missed it. Testing looked good in FF 2, .next() was returning the nested <ul>, and I didn't even notice the problem. In IE6/7 however, .next() returned the next <li>, and not the <ul> which was
[jQuery] Plugin wanted
Hi all, Sorry for this request but I've looked for a plugin I saw which auto-sizes an input or a textarea according to its content. I looked at the plugins' page, in the mailing list archive. No way to find it! If somebody could help me... Cheers, Franck. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Plugin wanted
Hi, take a look here http://interface.eyecon.ro/demos an try Autoexpander demo Best regards, Stefan Kilp
[jQuery] Amazing jQuery!
I really appreciate the developers and of coz , users of jQuery. You made the history! I have learned javascript for more than 10 years and never thought that it is so powerful with jQuery - only 20KB of library! I thought it should be part of the javascript standard! Also, the emails are so active, users are helpful to each others, really amazing! _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Capturing an event when an input value is changed programmatically
I'm using the Xin calendar in one of my forms. It's a great little DHTML calendar, but I need to capture an event when the value is changed programmatically so I can do something with the value. I've tried firing the event manually using element.onchange(); but that doesn't seem to work - at least not in FF2. Any ideas on how to deal with this? -- View this message in context: http://www.nabble.com/Capturing-an-event-when-an-input-value-is-changed-programmatically-tf3309695.html#a9206381 Sent from
[jQuery] jquery rocks
hi all jquery newbie here, I'm working on a jquery accordion menu here: http://70.133.226.219/dwtIndex.htm It's the button menu on the left. It's written just using John R's DL demo from the screencast tutorial, with only one change that nothing is open initially. I can't figure out how to make the button's toggle when clicked, rather than if they are open, close and open again. I've seen some code hints but can't quite figure out exactly how to add those to the existing code. Thanks for any help.
[jQuery] jquery upload & CAPTCHA ... what are you using?
hey. i wonder what is the most used or what u are using for 1.uploading files with ajax and jquery 2.CAPTCHA jquery ... i found serval but i really dont know what to pick... suggestions? -- View this message in context: http://www.nabble.com/jquery-upload---CAPTCHA-...-what-are-you-using--tf3308624.html#a9203250 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] jquery upload... what are you using?
hey. i wonder what is the most used or what u are using for 1.uploading files with ajax and jquery 2.CAPTCHA jquery ... i found serval but i really dont know what to pick... suggestions? -- View this message in context: http://www.nabble.com/jquery-upload---CAPTCHA-...-what-are-you-using--tf3308624.html#a9203250 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Is there a jQuery way to do an innerWrap?
Is there a jQuery way to do an innerWrap? For example: <div class="outerdiv"> <h3>blah blah blah</h3> Lorem ipsum dolor sit amet </div> I am looking to wrap all of the contents of .outerdiv with another div as in: <div class="outerdiv"> <div class="innerdiv"> <h3>blah blah blah</h3> Lorem ipsum dolor sit amet </div> </div> I tried using .prepend('<div class="innerdiv">') and .append('</div>'), but the prepend operation closes the div tag. I tried cloning the children of .outerdiv, emptying .outerdiv,
[jQuery] problem with iFrame in FF (again)
Ok, I copied this code from the Mozilla developer center but funny enough, it works under IE6 and not on Firefox: <br style="font-family: courier new,monospace; color: rgb(51, 204, 0);"><span style="font-family: courier new,monospace; color: rgb(0, 102, 0);"> /**</span><br style="font-family: courier new,monospace; color: rgb(0, 102, 0);"><span style="font-family: courier new,monospace; color: rgb(0, 102, 0);"> * First I define the function.</span><br style="font-family: courier new,monospace; color:
[jQuery] Q: best way to create dynamic content?
short question: what is the recommanded/better/fastest (memory footprint/execution time) jQuery way to create dynamic content? the length of code is not so important for me. or should i use one of the DOM creation plugins? a) var myIdVar = 'id1'; var myClassVar = 'class1'; $('<div></div>').attr({'id':myIdVar,'class':myClassVar}).appendTo('#myAnchor '); or b) var myIdVar = 'id1'; var myClassVar = 'class1'; var myHtml = '<div '; myHtml += 'id="'+myIdVar+'" class="'+myClassVar+'"></div>'; $('#myAnchor').append(myHtml);
[jQuery] Multiple Key events
Hey all, Just wondering if someone could tell me what the best way to capture a an event where 2 keys are pressed simultaneously - I've got a textarea that I want to capture the Ctrl+Enter combo... Thanks in advance Allan _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Ajax get does not fetch image in IE
I just upgraded to 1.1.2 version but still like in 1.1.1 when I try to use $.get to fetch a php file it load an image in FF and Opera but in IE the image in not loaded. The segment of code I am using is as follows $("#msg").show('slow'); $.get("test.php", function(item) { $("#msg").slideUp('slow'); $('#cartProducts').prepend('<div class="productCart" id="item_'+productId+'"><div class="gen_info" id="' + productId + '_info"></div>'+item+productId+'</div>'); $('#item_'+productId+'>
[jQuery] Sliding something up to make it visible?
<!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 dir=ltr align=left><SPAN class=975152619-27022007><FONT face=Arial color=#0000ff size=2>No one? Is this even possible?</FONT></SPAN></DIV><BR> <DIV class=OutlookMessageHeader lang=en-us dir=ltr align=left> <HR tabIndex=-1> <FONT face=Tahoma size=2><B>From:</B> discuss-bounces@jquery.com
[jQuery] Scripting HTML created with innerhtml or .load
I was playing with a script that had used innerhtml or .load() to fill in a div tag. The code placed inside the tag was "the is info placed in the orginal tag <div id="newcode"> Please click me</div>" Now I have a script in the header, $("div#newcode").click(function(){alert('this works');}); of course this alert box never gets activated. I assume it doesn't work because the code is not truely part of the pages' dom. So how do I get this to work and have it part of the dom. thanks in advance How
[jQuery] Creating stylesheets in jQuery
This may be helpful to someone: I made a jQuery extension that lets you change the stylesheet styles, rather than the inline styles (which is what jQuery generally does). So you can do: $.style('p').css('color','green'); creates a stylesheet with a rule that sets the color of P elements, including any that are created in the future. That's different from $('p').css('color','green'); which changes the color of any existing P elements only. It also takes an options object that can specify the media
[jQuery] (Completely) Horizontal menus?
Has anybody come across a good horizontal menubar implementation? They seem pretty rare overall[1], but I don't think I've seen one for jQuery yet. Ref the New York Observer site for example: <a href="http://www.observer.com/"> http://www.observer.com/</a> (Note: only visually. Their actual implementation is just a bunch of divs being swapped on hover) [1] One exception being UDM, which while great is also just way too much in many cases. _______________________________________________ jQuery mailing
[jQuery] how can I improve this?
I've managed to build a rough model of what I'm trying to do, though it will be obvious from my jquery code that I have limited knowlege of how to really harness the power of jquery. This mock-up works "okay" in FF, a little less so in IE6 & 7, and doesn't really work in Safari. I've posted the page here - all code is inline: http://www.monkeypuzzle.net/testfiles/jquery/splitwindow/ The idea is that you start with a Summary View with a data table. Clicking on some data will split the screen in half
[jQuery] PLUGIN: jdMenu 1.3 FINAL BETA
<div>Greetings!</div> <div> </div> <div>jdMenu 1.3 is in final beta and there are quite a number of changes! jdMenu 1.3 is a total rewrite from the ground up</div> <div> </div> <div>[New Features]</div> <div>* Dual delay settings for showing and hiding of menus</div> <div>* Accessibility support - support for keyboard navigation of menus (items have to have an A tag to get focus)</div> <div>* Smart menu positioning - menus will position themselves to be in the browser viewport at all times</div>
[jQuery] Validation plugin 1.0 alpha 2
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta content="text/html;charset=ISO-8859-15" http-equiv="Content-Type"> <title></title> </head> <body bgcolor="#ffffff" text="#000000"> Hi folks, thanks again for the feedback on the alpha 1 release! It helped a lot to push some more improvements: <a class="moz-txt-link-freetext" href="http://bassistance.de/jquery-plugins/jquery-plugin-validation/">http://bassistance.de/jquery-plugins/jquery-plugin-validation/</a> Some
[jQuery] How connect Jquery to Mysql
Hi How connect JQuery to Mysql?<br clear="all"> Regards Mário Alberto Chaves Moura _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Imagebox display problem
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=356492823-27022007><FONT face=Arial color=#0000ff size=2>Hi Benjamin</FONT></SPAN></DIV> <DIV><SPAN class=356492823-27022007><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><SPAN class=356492823-27022007><FONT face=Arial color=#0000ff size=2>Imagebox
[jQuery] ANNOUNCE: Alpha 2 of Ext 1.0 for jQuery is Available
I did not see the date picker widget in the demo. Is it there yet? :-) Thanks Ricardo Parada _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] How connect Jquery to Mysql
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV dir=ltr align=left><SPAN class=426085122-27022007><FONT face=Arial color=#0000ff size=2>jQuery cannot be directly connected to a database server. You'd need some sort of programming language such as Coldfusion, PHP or ASP.</FONT></SPAN></DIV><BR> <DIV class=OutlookMessageHeader lang=en-us
[jQuery] Interface tooltip + swf problems
Hi, I have a little problem using interface's tooltip when i have a swf in the same html. The problem is that the swf gets reseted whenever a tooltip effect starts. You can see a proof of concept right here: http://www.irontec.com/~jabi/jquery/ Any ideas on how to deal with that? Thanks -- Javier Infante _______________________________________________ jQuery mailing list discuss@jquery.com http://jquery.com/discuss/
[jQuery] Is there a plugin that manipulates: textfields, radio`s and chackbox forms?
Hey, i alway like to modify things :) and that`s the same with html`s radio`s, checkboxes and forms. now i`ve seen a plugin that adds a outer blue line arround a textfield (don`t know where i found that plugin) when you click it, but i didn`t found any jquery plugin that is adjusting the checkboxes and radio buttons so that you can use your own style on them.. so if it exists could someone point me to it because google cant help me in this case. if it isn`t existing.. could someone make it :D what
[jQuery] release: Treeview 1.2
Hi folks, for anyone interested in the Treeview plugin: I've just released version 1.2. I've added two options: "unique" (Boolean): Set to allow only one branch on one level to be open (closing siblings which opening). Default: none "toggle" (Function): Callback when toggling a branch. Arguments: “this” refers to the UL that was shown or hidden. Works only with speed option set (set speed: 1 to enable callback without animations). Default: none Also fixed the packed version, should work now. Have
[jQuery] treeview question
Hey, I am working with Jörn's plugin (http://bassistance.de/jquery-plugins/jquery-plugin-treeview/) and there are a few things I just can't figure out. 1. I need to have so that if expand one folder it will collapse any open folder. 2. How would I bind an event for each time a folder is expanded or collapsed? Thanks, Benjamin -- View this message in context: http://www.nabble.com/treeview-question-tf3301972.html#a9185253 Sent from the JQuery mailing list archive at Nabble.com. _______________________________________________
[jQuery] TABS plugin: ajax tabs, $.triggerTab, and intercepting clicks ??
I've finally got around to using the tabs plugin && am loving it! :) In due time, I of course came across a complexity that I'm having a hard time elegantly solving. 4 tabs are setup displaying forms to aid in a mailing composition; "composition", "template", "message", and "preview". The content of these tabs is pulled via an ajax request ({remote: true}). The content of each tab contains a continue button <input type="submit" ../>, which submits the form, and if VALID, takes them to the next tab.
[jQuery] jqueryplugins.com
Coming soon: The ability to search through almost 100 jQuery plugins and find your perfect plugin. The current official plugins list leaves a lot to be desired. Looking down a long list a plugin names really doesn't help you find exactly what you're looking for. The answer is (almost) here: jQueryPlugins.com. This site will allow you to look through all jQuery plugins quickly and easily. We've not finished all the details yet but we'll be launching the site soon, and some screenshots even sooner.
[jQuery] toggling radio buttons
That worked perfectly Mike. Thanks! -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Mike Alsup Sent: Tuesday, February 27, 2007 2:18 PM To: jQuery Discussion. Subject: Re: [jQuery] toggling radio buttons
[jQuery] Imagebox display problem
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=106582620-27022007><FONT face=Arial color=#0000ff size=2>Hi Benjamin</FONT></SPAN></DIV> <DIV><SPAN class=106582620-27022007><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><SPAN class=106582620-27022007><FONT face=Arial color=#0000ff size=2>Where would
[jQuery] toggling radio buttons
<!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=063270420-27022007><FONT face=Arial size=2>I have a series of radio buttons with values of either 1 or 0.</FONT></SPAN></DIV> <DIV><SPAN class=063270420-27022007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=063270420-27022007><FONT face=Arial size=2>I'd
[jQuery] Sliding something up to make it visible?
Not really...I'd like the div (and it's contents) to slide up into view. Think of a navigation that shows itself by sliding up. -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of Alex Ezell Sent: Tuesday, February 27, 2007 1:59 PM To: jQuery Discussion. Subject: Re: [jQuery] Sliding something up to make it visible? I think what he wants is something like the content is on the page and there is a "layer" above it that slides up. So, the content
[jQuery] collapsing table - selecting rows between specific other rows
Last week I posted this collapsing table: http://www.monkeypuzzle.net/testfiles/jquery/Accordion_table/index_2.html Building on that, I passed it over to developers who are implementing it in .NET with ajax... they've discovered that .NET is having problems with the tbody tags, and are wondering if there is another way of doing this. So, if we're forced to change the markup (who knows, maybe we'll yet find a way), how would I modify the jquery to find all the rows between the tr.group that gets clicked
[jQuery] Sliding something up to make it visible?
That looks like exactly what I need. Thanks for the response!! -----Original Message----- From: discuss-bounces@jquery.com [mailto:discuss-bounces@jquery.com] On Behalf Of rolfsf Sent: Tuesday, February 27, 2007 1:52 PM To: discuss@jquery.com Subject: Re: [jQuery] Sliding something up to make it visible? did you try the Slide In Down from the interface plugin? http://interface.eyecon.ro/demos/ifx.html#slide-fx Rolf Andy Matthews-4
[jQuery] Sliding something up to make it visible?
<!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=548591314-27022007><FONT face=Arial size=2>I'm working on a site which will use a div at the top of the page to contain registered user navigation.</FONT></SPAN></DIV> <DIV><SPAN class=548591314-27022007><FONT face=Arial size=2></FONT></SPAN> </DIV> <DIV><SPAN class=548591314-27022007><FONT
[jQuery] Imagebox display problem
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML><HEAD> <META http-equiv=Content-Type content="text/html; charset=iso-8859-1"> <META content="MSHTML 6.00.6000.16414" name=GENERATOR></HEAD> <BODY> <DIV><SPAN class=259364219-27022007><FONT face=Arial color=#0000ff size=2>Hi Benjamin</FONT></SPAN></DIV> <DIV><SPAN class=259364219-27022007><FONT face=Arial color=#0000ff size=2></FONT></SPAN> </DIV> <DIV><SPAN class=259364219-27022007><FONT face=Arial color=#0000ff size=2><A href="http://www.janetweberdesign.com/index.php">http://www.janetweberdesign.com/index.php</A></FONT></SPAN></DIV>
Next Page