[jQuery] Re: Is this list too busy? jQuery list for your time zone

2009-02-04 Thread Oliver Boermans
2009/2/4 jQuery Lover ilovejqu...@gmail.com: I receive emails from the list and easily keep track of my postings in gmail. You can click on Sent mail and see if you have any replies in thread you've posted... Ah, perhaps the mistake I have been making is sending and reading my messages in

[jQuery] Covert relative url to absolute url

2008-10-12 Thread oliver
Hi, Is there a method available that will allow me to convert the reltative url to absolute url? Thanks!

[jQuery] Re: Doc's site down?

2008-08-24 Thread Oliver Beattie
So slow at the moment, they keep timing out. (I would love to know who the host is so I will be sure to avoid them). It seems jQuery's host is RimuHosting http://rimuhosting.com/ — but they only offer VPS/Dedicated so it's not as if this can be pinned as the host's fault… looks like jQuery

[jQuery] help with appending a script after wrapping a dive with jquery

2008-06-18 Thread Adam Oliver
In the pursuit of cleaning up templated code, I am attempting to push a third party test vendor we use into one area of our templated system. Background: I have js on every page (all the same), js on pages that are unique to the pages, and js on each page that are unique to each 'boxed' area to

[jQuery] Re: Hash as URL

2008-02-11 Thread oliver
That function is only firing once, when the DOM is ready. You want it to fire every time one of your links is clicked, so add a click handler to each of them. Inside of that handler, don't look at the location, instead look at the href of the clicked item and extract that hash. Assuming a like

[jQuery] Re: Store meta data in jQuery?

2007-11-04 Thread Oliver Boermans
Thanks Mike, can the metadata plugin be used to store variables determined on load for later use? So when the variables are subsequently required the code to retrieve them is simple and quick. Cheers Ollie On 05/11/2007, Mike Alsup [EMAIL PROTECTED] wrote: Is there a relatively simple plugin

[jQuery] Re: potential bug with .val() in 1.2.1

2007-09-19 Thread oliver
I have cross-posted an example to the development list. oliver On Sep 18, 4:52 am, John Resig [EMAIL PROTECTED] wrote: What kind of error did you receive and in what browser? What type of element were you clicking to cause this error to occur? In the future, you should bring bugs like

[jQuery] potential bug with .val() in 1.2.1

2007-09-18 Thread oliver
) and moved on to the target.text() value. I can probably find a workaround, at some cost in brevity, but I did not expect this delta when upgrading to 1.2. oliver

[jQuery] Superfish CSS a class

2007-09-11 Thread Oliver
Hi All, I am using the most recent version of superfish and jquery. I am trying to provide an alternative CSS style to the a href tags as they are currently the same style as for links within the rest of the site. I tried the following by providing an a id=super where our menu gets generated and

[jQuery] Re: Adding a delay between .each() function executions

2007-09-04 Thread Oliver Boermans
Damn you cut and paste! Funny white space characters to blame :/ I don't understand the js well enough to figure out why...

[jQuery] Re: Adding a delay between .each() function executions

2007-09-04 Thread Oliver Boermans
Champion Franck! Your code working beautifully in Safari/Mac. To my js console at least - I have a little work to put it all together. Regarding the Mac... Keep asking - if you don't the answer is always no!

[jQuery] Re: new Plugin every: jQuery-oriented setTimeout and setInterval

2007-08-16 Thread oliver
blair, these are really nice: the labels give excellent granularity, and I like the x times feature of the interval. but... where is the code? oliver On Aug 13, 3:09 pm, Blair Mitchelmore [EMAIL PROTECTED] wrote: So I actually wrote this plugin almost six months ago, but a few weeks ago I

[jQuery] Re: problems with .css()

2007-08-05 Thread oliver
When using CSS properties with hyphens, you must convert them to camelCase, e.g, textAlign. It might also work if you use the two- argument version of the css function, e.g. .css(text-align, center) o On Aug 5, 5:45 am, jayturley [EMAIL PROTECTED] wrote: I am having a bit of a problem with

[jQuery] Re: Determine DOM element based on mouse position

2007-08-04 Thread oliver
any embedded HTML (links, bold tags, etc) since they will not break into paragraphs the way you expect. The text node after a header could be everything up to the a tag in the middle of the paragraph, for example. o On Aug 1, 4:32 pm, DaveG [EMAIL PROTECTED] wrote: oliver wrote: I think you

[jQuery] Re: Determine DOM element based on mouse position

2007-08-04 Thread oliver
, and only attach click events to matching (text) nodes. o On Aug 1, 4:32 pm, DaveG [EMAIL PROTECTED] wrote: oliver wrote: I think you will need to wrap the paragraphs in some tag, p or span or something else. This approach seems the most doable -- I'd have to wrap the elements with jQ

[jQuery] Re: Unable to replicate what seems like a simple element via jQuery

2007-08-04 Thread oliver
It looks like in your example you are in two places using making_vote_left where you probably meant make_vote_left. It seems to me that your code could be simplified by using a more semantic CSS markup, rather than 'right' and 'left.' You can also re- use classes, e.g., selected rather than

[jQuery] Re: Good Javascript editor or IDE?

2007-08-04 Thread oliver
and promising: I am using this now * Aptana - already mentioned, but works nicely on the Mac too. I am exploring this one, but while very powerful it is clunky compared to Coda. The main draw would be the ability to interact with FireBug (which I haven't got working). oliver

[jQuery] Re: Determine DOM element based on mouse position

2007-07-31 Thread oliver
or span or something else. Then, the event.target will be a specific element, and you can navigate from that with $ (this).prev(h2) oliver On Jul 31, 3:40 pm, DaveG [EMAIL PROTECTED] wrote: I need a way of determining a parent element of the element at the mouse position at the time of a double

[jQuery] Re: Tieing elements together for a mouseout

2007-07-30 Thread oliver
: the window.setTimeout function returns a value. if you set a timeout on mouseout, and save that value in a variable, you could call window.clearTimeout with the value when you mouseover either of the elements. oliver On Jul 28, 10:16 pm, mcraig [EMAIL PROTECTED] wrote: I have some navigation that works

[jQuery] Re: Mootools

2007-07-30 Thread oliver
briefly? not as good. o On Jul 28, 7:13 pm, Mitchell Waite [EMAIL PROTECTED] wrote: Can anyone tell me how this compares to jQuery, briefly? Mitch

[jQuery] Re: question about import a js file into a webpage

2007-07-30 Thread oliver
this page was written against this version of the css/js files. It would be relatively easy to search the web logfiles for 'non-current' versions, and find any pages that need to be updated. oliver On Jul 29, 12:46 pm, Guapo [EMAIL PROTECTED] wrote: this question is not related to jQuery

[jQuery] Re: Allowing a .click() function to occur as many times as needed in tandem with .load() ?

2007-07-30 Thread oliver
to run. oliver On Jul 28, 8:50 am, inVINCable [EMAIL PROTECTED] wrote: Hello everyone, I am just about ready to throw my darn computer out the window here :P. What I am doing is quite simple, I am using the .load() function to call upon a function, like so: $(div.vote_against_selected).click

[jQuery] Re: Element contains element

2007-07-30 Thread oliver
all jQuery objects have a length attribute. if it is 0, then your query did not match anything. o On Jul 30, 3:12 am, Adrian Lynch [EMAIL PROTECTED] wrote: When I do something like the following $(div/a), is there a way to determine if that doesn't match any elements? find(expr) looked

[jQuery] Re: How does everyone handle the constant updating of jQuery and plug-ins?

2007-07-28 Thread oliver
There are a few ways to keep yourself up-to-date with jQuery. You can of course just update the file you already have, which is probably the easiest way. On my site, I have a universal script file and have created a 'load script' function (rather like jQuery's getScript function) so that I can

[jQuery] Re: How to call many ajax functions?

2007-07-25 Thread oliver
I think it depends on what you are doing in those click functions. If they inherently call timeout/interval code, then they are non-blocking by nature and you will need to edit them in able to be able to pass in a callback of some sort. If the click handlers are already blocking, though, then

[jQuery] Re: Formatting External Links

2007-07-25 Thread oliver
Then I'd try $('[EMAIL PROTECTED]').filter('[EMAIL PROTECTED]') 'select all links (with hrefs) and remove those that contain mysite.com' o I want to reformat all the links that DONT point to my site. Instead of using $('a.redir'), try using $('[EMAIL PROTECTED]')

[jQuery] Re: How to call many ajax functions?

2007-07-25 Thread oliver
) }); function sequential_ajax() { $(#bt1).trigger(click, function() { $(#bt2).trigger(click, function() { $(#bt3).click(); }); }); } o On Jul 24, 10:35 pm, oliver [EMAIL PROTECTED] wrote: I think it depends on what you are doing in those click functions

[jQuery] Re: default submit is not prevented when using jquery.validate with submitHandler

2007-05-24 Thread oliver
in your latest version, commented out my workaround code, and it now works without doing the default submit. Thanks for the help, and very rapid turnaround! oliver

[jQuery] default submit is not prevented when using jquery.validate with submitHandler

2007-05-23 Thread oliver
I am trying to use jquery.validate and jquery.form together, following the example here: http://jquery.bassistance.de/validate/demo-test/ajaxSubmit-intergration-demo.html Looking in the validate documentation, I see that submitHandler is supposed to prevent the default form submit: and