[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: Link Clicks Double Firing

2010-01-14 Thread bill
this really an interesting jq/html semantic issue: if the tag is not handling the actual redirection to another page, maybe we shouldn't be using the 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
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 wrote: > Hi Bill, > > I'm still learning lots, and w

[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 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 to com

[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 i

[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" (hitar

[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] 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 feel

[jQuery] Re: show/hide

2010-01-12 Thread bill
the jquery: $(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 hide/show your sections, so i

[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 simpli

[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" 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] (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
ny help or ideas would be greatly appreciated. Bill

[jQuery] Re: array of attributes

2009-11-20 Thread Bill
val); return $.map(this, function(a){ return $(a).attr(key); }); } On Nov 20, 12:30 pm, Bill 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: > > > >

[jQuery] array of attributes

2009-11-20 Thread Bill
urn all the attribute values in an array? What's the syntax to produce this result? Thanks in advance, --Bill

[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 wrote: > Leonardo, thanks very much for your reply. > > I've updated my code, so the third wrapper con

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

2009-07-15 Thread Bill
nt().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 wrote: >  You can put a DIV inside a LI and animate the DIV > > >  

[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 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://gr

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

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

[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 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: > > >htt

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

2009-07-13 Thread Bill
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/07132009/html-scaffolding/advanced-search.html On Jul 11, 1:15 pm, Olaf Bosch wrote: > Bill

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

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

[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 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 es

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

2009-07-08 Thread Bill
deal breaker. Any other tips/tricks/magic spells out there? On Jul 8, 8:17 am, Bill wrote: > Thanks Leonardo, I'll try that now. > > On Jul 8, 5:52 am, Leonardo K wrote: > > > > > I'm trying to guess here. I believe the problem is the padding of the > &g

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

2009-07-08 Thread Bill
as well but in the IE is not smooth enough. > > > > On Tue, Jul 7, 2009 at 19:52, Bill 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, Ch

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

2009-07-07 Thread Bill
artfilter.js." I've read about issues like these in earlier versions 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.23231553&departmentId=123 the second parameter to the getJs

[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. \n 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 since removing it in the above scenario allows it

[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 > > 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: get email and send email?

2009-06-14 Thread John Bill
make up ! 2009/6/15 inkexit > > 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: 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 > > 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 the edit button will

[jQuery] Re: Issue with Cycle Plugin

2009-06-14 Thread John Bill
great job! 2009/6/15 vintom > > 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 each other

[jQuery] Re: switching two table rows

2009-06-14 Thread John Bill
good job! 2009/6/15 Paul Witschger > 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: > > $('a.moveup').click(func

[jQuery] Re: anonymous function and code reusing

2009-06-13 Thread John Bill
it is very fun! why? 2009/6/14 MorningZ > > "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
quot;_this") to be able to call 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 wr

[jQuery] click event firing twice in Firefox

2009-06-08 Thread Bill
quot;Multi-select Filter Name." Click on/off checkboxes, and notice the output in the Firebug console. Notice that two handlers are being invoked for every event. However, 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] Re: animate callback scope for infinite loop?

2009-06-08 Thread Bill
bject. thanks again! On Jun 8, 11:58 am, Bill 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

[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 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.animat

[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é wrote: > try > $this=$(elementID); > > 2009/6/7

[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 i

[jQuery] Re: cancelling default click handler for

2009-03-08 Thread Bill
Actually, no. Thanks for the simplification! On Mar 8, 6:12 pm, MorningZ wrote: > is there any reason why you couldn't use a instead of a > ? > > On Mar 8, 8:57 pm, Bill wrote: > > > I have markup that looks like this: > > > > >    

[jQuery] cancelling default click handler for

2009-03-08 Thread Bill
I use jQuery to accomplish this? Thanks in advance for any help with this. --Bill

[jQuery] Extension/modification/overriding jQuery plugins

2009-01-22 Thread Bill
t #3 $(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] Re: Trouble with extending Object prototype

2008-12-11 Thread Bill
t;     return arr; > > > > } > On Thu, Dec 11, 2008 at 2:17 PM, Bill wrote: > > > If you know of another way of accomplishing this using jQuery, please > > let me know! > > > On Dec 11, 11:12 am, Bill wrote: > > > Hi all, > > > > I extended

[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 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 &g

[jQuery] Trouble with extending Object prototype

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

[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
nt 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
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] 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] SimpleModal containerCSS not working in Firefox or Chrome

2008-10-26 Thread Bill
libero, sit amet commodo magna eros quis urna. Save Cancel Please see http://beckelman.net/issues/simplemodalfirefoxproblem/default.aspx for a working demo and zip download of the code that you can test for yourself. Thanks for the help in advance. 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 &

[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: 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 and want to use name like xxx.yyy,wh

[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/j

[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 http://beckel

[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

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

2008-06-30 Thread Bill
t).height()896 $(window).height()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] Cross Browser variance in scrollTop related calculation?

2008-06-30 Thread Bill
there a more jQueryesq way to determine when the scrollbar is at its end? Thanks, Bill

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

2008-04-18 Thread Bill
to the else clause. Does Safari have 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
globally. So to put 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
outer, "parent", 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 us

[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]> wro

[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/lil

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

2008-01-29 Thread Bill Orcutt
l for some of what 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] 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 " &

[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

[jQuery] Firefox uncaught exception - Please help

2007-12-26 Thread Bill
ying to display a tooltip from 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
It seems that others have found and been able to work around this problem, but I am not experienced enough with javascript and ajax to fix this. I am somewhat desperate. I have been able to get the jQuery cluetips to work fine in IE. However in Firefox I am getting the "uncaught exception". Er

[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.