[jQuery] Re: Link Clicks Double Firing

2010-01-14 Thread bill
if there is a better solution that does not introduce the maintenance problem stated above. i appreciate your feedback and hope that i've made my point, however inelegant, a little clearer! On Jan 13, 6:38 pm, pedalpete p...@hearwhere.com wrote: Hi Bill, I'm still learning lots

[jQuery] Re: Link Clicks Double Firing

2010-01-14 Thread bill
this really an interesting jq/html semantic issue: if the a tag is not handling the actual redirection to another page, maybe we shouldn't be using the a tag at all. maybe the href should really just be stored in the jq routine. this clears up maintenance issues and passes the gut check.

[jQuery] Re: Link Clicks Double Firing

2010-01-14 Thread bill
doh! matt you hit the web accessibility nail right on the head! thanks for reminding me. maybe i should pay penance by turning off my javascript for a day! then again, corporate policy dictates that i have IE6 loaded on my pc, hopefully that buys me some web accessibility karma.

[jQuery] Re: tabs in one line, on small resolution

2010-01-13 Thread bill
just set the width of the containing div, not the min-width, as that is all that is required to prevent the collapsing and is supported by almost every browser available, including good ole IE6. @Greg to stop supporting IE6 means stop supporting the people who use IE6. many businesses rightly

[jQuery] Re: Converting a javascript to jQuery

2010-01-13 Thread bill
modestmj, can you provide some background as to why you want to convert working javascript to jquery? your reasons may (or may not be) relevant to a solution. either way, i am curious. thank you.

[jQuery] treeview

2010-01-13 Thread Bill Oberacker
I am using the treeview plugin (with the famfamfam theme) as a navigation tool, does anyone know how to stop a node which is a link, that also has child nodes from collapsing/expanding when the actual link is clicked? Basically, I want the tree to only collapse/expand when the plus/minus (hitarea)

[jQuery] Re: Link Clicks Double Firing

2010-01-13 Thread bill
change window.open to window.location both the anchor tag and the javascript are interpreting the click, and the problem is that your anchor tag is opening the link in the same window, whereas your js was opening the link in a new window. actually, pedalpete's solution is more correct (as there

[jQuery] Re: Link Clicks Double Firing

2010-01-13 Thread bill
ack, i just realized i misread pedalpete's solution; each click will only get interpreted once, but depending on where the click happens determines whether or not the a tag or the js will handle it. this smacks of wrongness. let's examine other ways to handle this: 1. expand the size of the a to

[jQuery] Re: Altering cloned HTML's ID values

2010-01-12 Thread bill
jQuery(this).attr(id,newId); On Jan 12, 10:15 am, Sloan Thrasher sl...@sloanthrasher.com wrote: Hi, I've got a table where I'm adding rows using clone and appendTo. After cloning, I need to change the ID of elements in the cloned HTML. How can I do that? Sloan

[jQuery] Re: show/hide

2010-01-12 Thread bill
without the corresponding html, it is hard to tell if this answer is completely correct. however, think about trying this approach, where these few lines replace ALL of your code: $(function() { $('div').click(function() { $('div').hide(slow); // first, for

[jQuery] Re: show/hide

2010-01-12 Thread bill
the jquery: script type=text/javascript $(function() { $('.sectionTitle').click(function() { $('.sectionBody').hide(slow); $(this).next(div).show(slow); }); }); the clickable parts: it is unclear what you want the visitors to click on to

[jQuery] (tooltip) position near the page borders

2009-12-02 Thread Bill Pairaktaridis
Hi there! I was wondering if there's a way to change the behavior of the tooltip when it reaches the borders of the page. I'd like it to either get pushed in the other direction as it gets closer or just not appear at all. Thanks a lot in advance.

[jQuery] dialog partial content not visible in IE7

2009-11-23 Thread Bill
would be greatly appreciated. Bill

[jQuery] array of attributes

2009-11-20 Thread Bill
/ the jQuery expression $(input).attr(name) will return only the string input-one. What if, instead, I wanted to return all the attribute values in an array? What's the syntax to produce this result? Thanks in advance, --Bill

[jQuery] Re: array of attributes

2009-11-20 Thread Bill
); return $.map(this, function(a){ return $(a).attr(key); }); } On Nov 20, 12:30 pm, Bill bllfr...@gmail.com wrote: Hey y'all, The jQuery attr() method returns only the attribute of a set's first matched element. E.g., for the HTML snippet: input type=text name=input-one

[jQuery] Re: Frustrating Scope Question with getJSON

2009-09-19 Thread Bill H
I've tried that and still can't seem to get the data into any sort of usable scope.

[jQuery] Re: slideUp(), slideDown() not working in IE 6, 7 on LI elements

2009-07-16 Thread Bill
Is the best way forward to just rewrite the HTML so that it uses DIV elements instead of UL and LIs? There's got to be a better way... On Jul 15, 2:38 pm, Bill bllfr...@gmail.com wrote: Leonardo, thanks very much for your reply. I've updated my code, so the third wrapper contains

[jQuery] slideUp(), slideDown() not working in IE 6, 7 on LI elements

2009-07-15 Thread Bill
() commands? Regards, --Bill

[jQuery] Re: slideUp(), slideDown() not working in IE 6, 7 on LI elements

2009-07-15 Thread Bill
Alright, so this *is* a bug: http://dev.jquery.com/ticket/3120 Anyone have any advice on a workaround ? On Jul 15, 12:15 pm, Bill bllfr...@gmail.com wrote: Hi all, I posted a week ago about some odd behavior with slideUp() and slideDown() in IE 6, 7, and 8 (the post is here:http

[jQuery] Re: slideUp(), slideDown() not working in IE 6, 7 on LI elements

2009-07-15 Thread Bill
) { $(this).slideUp(2000, function() { $(this).parent().hide(-1).remove(); }); }); But the problem persists in IE. Anyone know when the bug will be fixed? Could I get around the problem using the animate() command? Regards --Bill On Jul 15, 1:34 pm, Leonardo K

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-13 Thread Bill
: Bill schrieb: I'm seeing some weird behavior with the slideUp() andslideDown() functions inIE6, 7, and 8. You have the padding top/bottom change in adv*_search.css line 328 ff. padding-top: 0.625em; padding-bottom: 0.625em; to: padding-top: 0; padding-bottom: 0; then better

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-13 Thread Bill
; } (ie.css, line 193) On Jul 13, 11:24 am, Olaf Bosch olaf.bo...@t-online.de wrote: Bill schrieb: Thanks very much for your reply, Olaf. I tried removing the 0.625em of padding from the top and bottom and it doesn't help at all. See it in action here: http://69.59.182.148:4080/test

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-09 Thread Bill
Any ideas on this one? I've struggled with this for hours now. On Jul 8, 8:43 am, Bill bllfr...@gmail.com wrote: OK, I gave it a try but the problem persists. The animation works perfectly on all other browsers and I'd really like to keep it because it provides important (maybe essential

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-09 Thread Bill
detailing 1) the issue and 2) how to avoid it. On Jul 9, 8:04 am, Bill bllfr...@gmail.com wrote: Any ideas on this one? I've struggled with this for hours now. On Jul 8, 8:43 am, Bill bllfr...@gmail.com wrote: OK, I gave it a try but the problem persists. The animation works perfectly

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-08 Thread Bill
but in the IE is not smooth enough. On Tue, Jul 7, 2009 at 19:52, Bill bllfr...@gmail.com wrote: I'm seeing some weird behavior with the slideUp() and slideDown() functions in IE 6, 7, and 8. First, open the following URL in Firefox, Chrome, or Safari: http://69.59.182.148:4080/test/07072009

[jQuery] Re: slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-08 Thread Bill
breaker. Any other tips/tricks/magic spells out there? On Jul 8, 8:17 am, Bill bllfr...@gmail.com wrote: Thanks Leonardo, I'll try that now. On Jul 8, 5:52 am, Leonardo K leo...@gmail.com wrote: I'm trying to guess here. I believe the problem is the padding of the element you are sliding

[jQuery] slideUp(), slideDown() choppy on IE 6, 7, 8

2009-07-07 Thread Bill
of jQuery, but applying fixes similar to the ones described in those articles bore no fruit, which leads me to believe there's something wrong with my code. Any insight into what's happening here would be greatly, greatly appreciated. Regards, --Bill

[jQuery] Re: getJSON callback? does not work with querystring param

2009-07-06 Thread Bill Ramirez
If you pass a param to the json call, it gets passed into the querystring: $.getJSON(jsdata/customerhandler.ashx, { show: Math.random(), departmentId: dptId}, customerLoaded); would be rendered as: jsdata/customerhandler.ashx?show=0.23231553departmentId=123 the second parameter to the getJson

[jQuery] jquery parsing problem

2009-06-23 Thread Bill
If I get the following response back from $.get(..., 'xml'), jQuery is unable to recognize address as an attribute. ?xml version=1.0 encoding=UTF-8?\n device address=http://192.168.1.100/ NOTE: The '\n' are actual line feeds not, the characters \ and n. I just want to show them for emphasis

[jQuery] Re: Is it possible to add jquery effect on jquery created dom??

2009-06-15 Thread John Bill
i think that very easy to use json that get message from service. 2009/6/15 polygontseng polygon.ts...@gmail.com We want to make a ajax post to remote usr on an jquery created dom(an appended input). but it's not work. Thanks.

[jQuery] Re: switching two table rows

2009-06-14 Thread John Bill
good job! 2009/6/15 Paul Witschger tigerseyet...@gmail.com Thank you, Karl!! Works excellent. Exactly what I needed! Karl Swedberg wrote: Assuming that the Move Up link is within the table row and that the link has a class of moveup, you could do something like this:

[jQuery] Re: Issue with Cycle Plugin

2009-06-14 Thread John Bill
great job! 2009/6/15 vintom v...@vintom.com I am not great with jquery (yet), but I have used a few plugins with me newest site. I am using the cycle plugin and it works great, but I am having one issue. When I load the page initially (http://vintom.com/ gfc) it stacks the images on top of

[jQuery] Re: Ajax Edit in Place

2009-06-14 Thread John Bill
I think if somebody edit one person , u can make the page can't click again ,and show a message :waiting... 2009/6/15 Jennifer Roberts jenmorrowrobe...@gmail.com Hi everyone! What I'd like to build is a page which displays a list of people. Next to each person is an edit button. Clicking

[jQuery] Re: get email and send email?

2009-06-14 Thread John Bill
make up ! 2009/6/15 inkexit createmod...@gmail.com Looking for a good tutorial on how to use jQuery to read email sent to my site's email address, and how to send email through my site's email. Basically, how to construct the server email portion of Twitter. Thanks all.

[jQuery] Re: anonymous function and code reusing

2009-06-13 Thread John Bill
it is very fun! why? 2009/6/14 MorningZ morni...@gmail.com I thought it should have worked but it doesn't You cannot pass params like that in a click event instead of $(document).ready(function(){ $(#moon).click(myFunction(param)); $(#earth).click(myFunction(param2)); function

[jQuery] Re: animate callback scope for infinite loop?

2009-06-11 Thread Bill
the floatAround() function. This technique (and the technique of saving the reference to the original context suggested by mkmanning) is outlined in the book JQuery in Action by Bibeault and Katz on page 337. Great book! On Jun 8, 12:07 pm, Bill bill.fisher.oakl...@gmail.com wrote: I get it now.  It's

[jQuery] Re: animate callback scope for infinite loop?

2009-06-08 Thread Bill
variables within Animation? thanks again, Bill On Jun 7, 11:13 pm, mkmanning michaell...@gmail.com wrote: The above post fails due to this: obj.animate({ opacity:myOpacity}, 500); animation(); The animation() function will be called immediately each time. It should be in obj.animate's

[jQuery] Re: animate callback scope for infinite loop?

2009-06-08 Thread Bill
. thanks again! On Jun 8, 11:58 am, Bill bill.fisher.oakl...@gmail.com wrote: Hi everyone, Thanks for your replies! I was about to reply to mkmanning and say that his solution would not work, but I tried it and it does!  wow!  thanks! Is this because floatAround(), being declared within function

[jQuery] click event firing twice in Firefox

2009-06-08 Thread Bill
, if you click on the more link in the lower right-hand corner, only one event is fired. I've been struggling with this for days. Any help would be *greatly* appreciated. Kind regards --Bill

[jQuery] animate callback scope for infinite loop?

2009-06-07 Thread Bill
Hi, I'm trying to create an endless animation similar to a screen saver, where an image floats around the screen, fading in and out. I would like to stay out of the global namespace, so I'd like to use the callback to animate() rather than getTimeout(), which seems to operate only on functions

[jQuery] Re: animate callback scope for infinite loop?

2009-06-07 Thread Bill
I think you may have misunderstood what I am trying to do. I need to refer to the instance of the Animation object. Within the callback, this already refers to the HTML Element. On Jun 7, 4:40 pm, Gustavo Salomé gustavon...@gmail.com wrote: try $this=$(elementID); 2009/6/7 Bill

[jQuery] cancelling default click handler for label/

2009-03-08 Thread Bill
, the checkbox toggles from its previous state. I'd like to cancel this behavior, so that clicking within the label has no effect on the checkbox. How would I use jQuery to accomplish this? Thanks in advance for any help with this. --Bill

[jQuery] Re: cancelling default click handler for label/

2009-03-08 Thread Bill
Actually, no. Thanks for the simplification! On Mar 8, 6:12 pm, MorningZ morni...@gmail.com wrote: is there any reason why you couldn't use a span instead of a label ? On Mar 8, 8:57 pm, Bill bllfr...@gmail.com wrote: I have markup that looks like this: div id=phrase:witness%2Bwhereof

[jQuery] Extension/modification/overriding jQuery plugins

2009-01-22 Thread Bill
$(this).focus(function(e) { doStillMoreCustomStuff(); }); } I would have a souce file called jquery.somePlugin.js and then maybe another one called jquery.somePluginOverride.js that would contain the extensions to the original. Thanks in advance for your help. --Bill

[jQuery] Trouble with extending Object prototype

2008-12-11 Thread Bill
) {jquery-1.2.6.js (line 1115) Any idea why this might be happening? Thank you kindly, --Bill

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Bill
If you know of another way of accomplishing this using jQuery, please let me know! On Dec 11, 11:12 am, Bill bllfr...@gmail.com wrote: Hi all, I extended the Object object with a method called getKeys() that works like Perl's keys() function -- given a hash, or associative array, the method

[jQuery] Re: Trouble with extending Object prototype

2008-12-11 Thread Bill
; } On Thu, Dec 11, 2008 at 2:17 PM, Bill bllfr...@gmail.com wrote: If you know of another way of accomplishing this using jQuery, please let me know! On Dec 11, 11:12 am, Bill bllfr...@gmail.com wrote: Hi all, I extended the Object object with a method called getKeys() that works like

[jQuery] Re: quote standards

2008-11-28 Thread Bill
I've wondered about this myself. I seem to go back and forth between the two without any rhyme or reason. Looking forward to more responses on this thread. On Nov 28, 1:51 pm, Andy Matthews [EMAIL PROTECTED] wrote: Yes. I am. Plus single quoting is slightly faster due to it's lower case

[jQuery] Question about $.data()

2008-11-14 Thread Bill
to do something like this: for (var x in $jQueryObject.data) { do something with x; } Is it possible to iterate through the data cache? If not, why not? Thanks in advance and regards, --Bill

[jQuery] Announcement: Sorted Column Highlighting Widget For TableSorter.js Plugin

2008-11-11 Thread Bill
and javascript in general. http://beckelman.net/post/2008/11/11/Sorted-Column-Highlighting-Widget-for-jQuery-TableSorter-Plugin-Demo.aspx Best Regards, Bill Beckelman

[jQuery] SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Bill
that you can test for yourself. Thanks for the help in advance. Bill

[jQuery] Re: SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Bill
Eric, Awesome. I knew it had to be something simple that I was missing. Adding the units fixed it straight away. Bill

[jQuery] Re: JQuery validate problem

2008-10-07 Thread Bill
thanks a lot! On 10月6日, 下午8时45分, Jörn Zaefferer [EMAIL PROTECTED] wrote: Take a look at the instructions here:http://docs.jquery.com/Plugins/Validation/Reference#Fields_with_compl... Jörn On Mon, Oct 6, 2008 at 10:50 AM, Bill [EMAIL PROTECTED] wrote: I have a problem.where i use

[jQuery] JQuery validate problem

2008-10-06 Thread Bill
I have a problem.where i use the jquey validate plugin for my project. I want to use the validate like this: s:textfield id=name name=userGroup.name/ but it does not work . i should make the id and name property as same. or named the id as cname and name is name if i use the struts2 framework

[jQuery] Re: Validation Plugin Not Working in FF3 but okay in IE, Chrome and Opera 9.5?

2008-09-10 Thread Bill
Jörn, Great catch that fixed it :) Thanks so much for taking a look. Bill On Sep 10, 8:09 am, Jörn Zaefferer [EMAIL PROTECTED] wrote: Your script tag seems to get ignored in Firefox: You've got type=text/jscript there, which should be text/javascript. That may be it. Jörn On Tue, Sep 9

[jQuery] Validation Plugin Not Working in FF3 but okay in IE, Chrome and Opera 9.5?

2008-09-09 Thread Bill
I am using the great Validation plugin by Jörn Zaefferer (http:// bassistance.de/jquery-plugins/jquery-plugin-validation/). In my project it is working fine except when the page is viewed with FF3. It works fine with IE7, Chrome and Opera 9.5. You can view my post on this project at

[jQuery] Cross Browser variance in scrollTop related calculation?

2008-06-30 Thread Bill
to determine when the scrollbar is at its end? Thanks, Bill

[jQuery] Re: Cross Browser variance in scrollTop related calculation?

2008-06-30 Thread Bill
()880 delta 16 $(window).scrollTop()237 scrollTopIsAtMax false As you can see, this algorithm doesn't work for Opera. Is there a more jQueryesq way to determine when the scrollbar is at its end? Thanks, Bill

[jQuery] Ingore: Cross Browser variance in scrollTop related calculation? - (see ticket #3046)

2008-06-30 Thread Bill
This Opera 9.5 discrepency has already be covered by http://dev.jquery.com/ticket/3046 (in fact, that's where the link in my 2nd post comes from). Sorry about all the noise. Bill On Jun 30, 5:45 pm, Bill [EMAIL PROTECTED] wrote: I've done a bit more research and found the following link

[jQuery] window.home() or location.href='about:home' and Safari 3.1

2008-04-18 Thread Bill
a different place in the DOM where the home page can be triggered using Javascript? So far I haven't been able to find anything. Thanks, Bill

[jQuery] Re: ANNOUNCE: No Spam plugin

2008-03-03 Thread Bill
this together, I changed the common code sequence: .replace('/', '@').replace('/', '.') to: .replace('//', '@').replace(/\//g, '.') This replaces the singly occurring double slash with an @, then replaces all single slashes with a dot. Cheers, Bill I

[jQuery] clueTips: how do I embed a clueTip inside another clueTip?

2008-02-08 Thread Bill
, clueTip is automatically closed and disappears. Is there any way to keep the outer or parent clueTip from closing in this applicaiton? I'm new at this so maybe this is not what cueTips are intended for. Is there some other plugin I should be using? Any recommendations? Thanks, Bill

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-30 Thread Bill Orcutt
Thanks Morgan- I'll make that change On Jan 29, 10:58 pm, Morgan Allen [EMAIL PROTECTED] wrote: The minVersion in the install.rdf is 2.0.0 I changed to 2.0.0.* and it installed On Jan 29, 2008 9:33 PM, Bill Orcutt [EMAIL PROTECTED] wrote: Thanks for the useful feedback on the site

[jQuery] [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Bill Orcutt
Lily can do: http://www.vimeo.com/625294 http://www.vimeo.com/625739 http://www.vimeo.com/626481 http://www.vimeo.com/625141 More information about Lily is available on the website: http://www.lilyapp.org/ thanks -Bill

[jQuery] Re: [ANN] Lily, javascript visual programming tool

2008-01-29 Thread Bill Orcutt
Thanks for the useful feedback on the site. I've added another download link and will implement some of the other suggestions as I find time. I hope once you've had a chance to have a look at the program, you'll consider joining the user group- http://groups.google.com/group/lily-users. -Bill

[jQuery] ClueTip Absolute Position Relative to Screen

2008-01-12 Thread Bill
Is there a way to position the cluetip relative to the same position on the screen? Bill

[jQuery] Re: Firefox uncaught exception - Please help

2007-12-27 Thread Bill
AdBlock Plus was killing it HAH! Thanks to Benjamin for checking it out. Bill On Dec 26, 10:49 pm, Karl Delandsheere [EMAIL PROTECTED] wrote: I prefer to use Firefox, but for the time being I will have recommend to users to use internet explorer. Bill Haha... Bill... Gates? :D I have

[jQuery] Re: Firefox uncaught exception - Please help

2007-12-27 Thread Bill
Adblock Plus was the cluprit. On Dec 26, 10:49 pm, Karl Delandsheere [EMAIL PROTECTED] wrote: I prefer to use Firefox, but for the time being I will have recommend to users to use internet explorer. Bill Haha... Bill... Gates? :D I have the same problem... Sometimes... I didn't get any

[jQuery] Firefox uncaught exception - Please help

2007-12-26 Thread Bill
/istockimages/ Vehicles.png')/div/div I really have no clue where to start to fix this error. I prefer to use Firefox, but for the time being I will have recommend to users to use internet explorer. Bill

[jQuery] Firefox uncaught exception

2007-11-28 Thread Bill
... Component returned failure code: 0x805e000a [nsIXMLHttpRequest.open] nsresult: 0x805e000a (unknown) location: JS frame :: http://www.quidizzle.com/scripts/js/jquery.js :: anonymous :: line 2293 data: no] Like I said it works fine in IE ugg!). Thanks for anyones expertise. Bill

[jQuery] Re: Announce: jQuery Tablesorter 2.0.1 Released

2007-09-20 Thread Bill Huber
they are less particular about semi-colons. Enjoy! Bill -- View this message in context: http://www.nabble.com/Announce%3A-jQuery-Tablesorter-2.0.1-Released-tf4468417s15494.html#a12801762 Sent from the JQuery mailing list archive at Nabble.com.