[jQuery] jCarousel Lite - getting carousel to stop on a specific image (without hovering)

2010-02-25 Thread Adam Moro
I am trying to get the slideshow to stop sliding on the fourth image (the last image in the slideshow) but having no luck. I've changed, "afterEnd: null" to "afterEnd: stop" in the $.fn.jCarouselLite function (line 17 in my version) but it is stopping on the second image, not the fourth. I know how

[jQuery] Setting iframe src with $("#iframeid").attr(src,url) adds unwanted item to browser history

2009-12-29 Thread Adam C.
This problem happens in both FF 3.0.x, and Safari, on both Windows and Mac, but not on IE7. When I set the src of an iframe, it adds another copy of the parent document's URL to the browser history. This gives the impression of a broken back button (as the user has to click back twice to go to th

[jQuery] selector performance

2009-11-10 Thread Adam Tistler
I am using jquery 1.3.2. I was wondering which is faster and why: $('#my-id .main table tr.my-class') or $('#my-id > .main > table > tr.my-class') or $('#my-id tr.my-class')

[jQuery] cycle plugin - remove positioning css?

2009-11-05 Thread Adam
I'm using the cycle plugin and was wondering if anyone has found a way to remove the position: relative from the main div and position: absolute from the imgs. This is added when the plugin is used. It's not very friendly in IE among other issues. Thanks! Adam

[jQuery] Resending an XMLHttpRequest

2009-10-30 Thread Adam
I'm wondering if there is a good way to resend an ajax request if it has produced an error. The example below isn't something I would be doing obviously but should be enough to convey what I'm talking about. $().ajaxError(function(event, request, settings, error) { request.resend(); }); The 're

[jQuery] Upload Progress Problems

2009-10-13 Thread Adam Meily
I am working on developing a simple upload form that allows the user to see the status of their upload. Basically, the upload is assigned a unique identifier that once the upload begins, the client polls the status page with that ID to get the status of it. This works in Firefox, but does not work

[jQuery] Re: cross-domain ajax question

2009-08-13 Thread adam
Ignore this. I've done research and apparently this is ajax 101 :) On Aug 13, 8:27 am, adam wrote: > I'm working in a large corporate intranet and used jQuery to build a > simple javascript include that developers can throw into their source > (HTML, ASP classic, ASP.NET, e

[jQuery] cross-domain ajax question

2009-08-13 Thread adam
I'm working in a large corporate intranet and used jQuery to build a simple javascript include that developers can throw into their source (HTML, ASP classic, ASP.NET, etc). Everything worked fine until I started to deploy out to the servers. My "logging" app is on one server in the company and t

[jQuery] RE: Firefox 3.5 Preloading Issue

2009-07-29 Thread Adam Bagarella
I'm not sure if this is the best place to post this question, but I'm using jquery for this process and so I figured it was a start. I have a form that submits via AJAX and jquery. When the user clicks the submit button, the button is replaced with an animated GIF while it loads. I preload the GI

[jQuery] Validation plugin - submit form without validation

2009-07-20 Thread Adam P
I'm using the Validation plugin for JQuery and was wondering if there was a function to submit the form without causing it to validate the form. I have a table with a list of radio-buttons and above that is a drop down list of states. The drop down list of states is used to filter the table rows

[jQuery] Superfish nav bar drops down BEHIND Javascript slideshow in Internet Explorer

2009-07-08 Thread Adam Bomb
I need some help. I'm using Superfish navigation with Ultimate Fade-In Slideshow. The two scripts work in harmony in every modern browser and lots of ancient ones... Except for Internet Explorer. In IE, the drop-down nav bar gets hidden underneath the fading images. See what I mean at http://www.

[jQuery] Re: ready() to bind post-ajax events

2009-07-05 Thread Adam
On Jul 4, 12:55 pm, "Josh Nathanson" wrote: > Would there be a racing issue with html() though?  I believe that is not an > asynchronous method, so it would have to complete before the next chained > method. > > -- Josh > > - Original Message - > From: "hedgomatic" > To: "jQuery (Engli

[jQuery] just trying to get more efficient with jQuery coding

2009-07-01 Thread Adam
This is a FAQ page I built with custom jquery function that toggles the answers open/closed on click of a question, and Im just wondering if anyone has a suggestion to make the code leaner and meaner: http://dfrecruiting.com/faqs The code: $(".entry h4").click(function() {

[jQuery] galleria + nyroModal in safari 4- issue

2009-06-10 Thread Adam
Ive been trying to troubleshoot this issue for a while to no avail. Hoping one of the JQ ninja-angels can uncover the culprit. What steps will reproduce the problem? 1. Use Safari (v4) - look at the file that is loaded into the iframe via nyroModal, and it functions correctly: http://www.viewwe

[jQuery] Equivalent of Event.observe

2009-06-02 Thread Adam S
I'm trying to make the cursor focus on a certain input element when someone hits a certain key combo (such as Shift+S). Does anyone know how you attach a listener like that and bind it to a key combo? Thanks in advance, Adam

[jQuery] browser detection, conditional CSS

2009-06-01 Thread Adam
a WP theme (Justin Tadlock's hybrid) that used http user agent to add classes to the body tag depending on which browser and I sorta liked this approach. Mostly because it actually works in my PC testing enviro. Thoughts? Thanks everyone! -Adam

[jQuery] [nyroModal] problems getting ajax-loaded content to trigger nyroModal window

2009-05-26 Thread Adam
, ajax page, and in the post call to the ajax page to no avail. Any thoughts? Thanks! -Adam

[jQuery] jQuery.extend(deep) not working?

2009-05-21 Thread Adam Nelson
I'm trying out this need extension: http://binarykitten.jkrswebsolutions.co.uk/2009/01/21/jquery-plugin-ajax-head-request/comment-page-1 which allows jQuery to do a HEAD request on an arbitrary URL in order to grab header values for a given page. Unfortunately, if that page is the page the scri

[jQuery] Performance of "parent > child" selector vs .children() method

2009-05-06 Thread Adam
Essentially, I'd like to know if there is any difference between $("div.grandparent > div.parent > div.child") and $("div.grandparent").children("div.parent").children("div.child") Does anyone know which of these is more performant or preferred when selecting child nodes? Thanks.

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-24 Thread Adam
Excellent! Thanks mkmanning! On Apr 24, 11:49 am, mkmanning wrote: > Here's quick plugin for you: > > http://actingthemaggot.com/test/jquery_example/animbg.html > > On Apr 24, 7:47 am, Adam wrote: > > > > > Thanks everyone, but none of these use jquery- the m

[jQuery] Re: creating an animated PNG loader pinwheel (sprite)

2009-04-24 Thread Adam
e:http://devthought.com/projects/mootools/apng/http://www.squaregoldfish.co.uk/software/animatedpng/http://www.otanistudio.com/swt/sprite_explosions/ > > -- ricardo > > On Apr 23, 5:14 pm, Adam wrote: > > > > > So I was trying to think of a way to create what was effectiv

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
> That sounds like a potential accessibility issue. I certainly think so, hence the question :] > Such script tags should be moved to just before body>. They are, but this still produces the problem since that's still part of the DOM we're waiting on. > There are probably more and better opti

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
> That sounds like a potential accessibility issue. I certainly think so, hence the question :] > Such script tags should be moved to just before body>. They are, but this still produces the problem since that's still part of the DOM we're waiting on. > There are probably more and better opti

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
On Apr 23, 2:57 pm, Brandon Aaron wrote: > You could use $.getScript to load in the slow loading scripts. Any scripts > loaded this way will be non-blocking (asynchronous). > -- > Brandon Aaron That could certainly cut down some of the time, but I suspect there's same-origin policy limitations

[jQuery] Re: Loading before dom = ready - Best Practices.

2009-04-23 Thread Adam
I actually do this for people with JS enabled on one particular site in question. Since the ads are in separate iframes, I simply don't specify a source, and use jQuery's DOM ready to query a php file that generates a random key, whereby I can then set the source for my ad frames. It's also nice s

[jQuery] Re: Lightbox with thumbnails

2009-04-23 Thread Adam
Check out Galleria- super slick image gallery plugin: http://devkick.com/lab/galleria/ Im actually doing a JQ-rich real estate site right now using Galleria- Ill post a link soon. On Apr 23, 2:15 pm, Jack Killpatrick wrote: > Agreed on the behavior, that's how I'd want it to act, too. > > Is t

[jQuery] creating an animated PNG loader pinwheel (sprite)

2009-04-23 Thread Adam
So I was trying to think of a way to create what was effectively a PNG animation similar to an animated GIF. What I decided was that it would be fairly simple to make a PNG sprite of each 'frame' of the animation, then set that image as the background of a container div, then move it in a stepping

[jQuery] Galleria thumbs not vertically aligned correctly in Safari

2009-04-23 Thread Adam
Im using Galleria on this page and in Safari, strangely the thumbnails bump down inside their container by 12px. Can anyone see why this is happening to me in Safari only? http://www.viewwestaspen.com.asp1-10.websitetestlink.com/property_detail.aspx?id=106490#images/2009020701242469178300-5.j

[jQuery] Trying to use UI accordion to create menu with event: click but still enable links on child link items

2009-04-07 Thread Adam
Photo Galleries PDF Brochure Could someone take a look and let me know how to tell the accordion to allow the 2nd level links to follow the link on click? Thanks in advance! -Adam

[jQuery] Re: inserting commas into a price value

2009-04-02 Thread Adam
Thanks Michael! Works well. -Adam On Apr 2, 12:04 pm, mkmanning wrote: > http://plugins.jquery.com/project/currencyFormat > > On Apr 2, 9:58 am, Adam wrote: > > > > > I am trying to manipulate a simple value (text node) which is a home > > price from 123456789 to

[jQuery] inserting commas into a price value

2009-04-02 Thread Adam
I am trying to manipulate a simple value (text node) which is a home price from 123456789 to be 123,456,789. Anyone have a resource? Thanks! -Adam

[jQuery] Wiring using jQuery vs. a static string in onClick

2009-04-02 Thread Adam Patt
I am setting an onClick for many rows doing this: copy I could set this information as attributes in other parts of the table structure to get what I needed to make a way to wire these up via jQuery. I could have hundreds of these links to wire up. I know that my current way will produce more

[jQuery] Wiring up lots of text boxes

2009-04-02 Thread Adam Patt
I want to set the onChange event for a lot of text boxes on a page and the code I currently have looks like this: $(document).ready( function() { //wire up all changes $("#requirementsgrid :text").change (find_and_total_week); }

[jQuery] Re: using apple-style slider

2009-04-01 Thread Adam
$("ul#resultsUL").css('width', resultsQuantity * 226 + 'px').animate ({'left' : ui.value * -1}, 500); // set the width of the UL accordingly and set up the slide of the results on change of slider value }, }); On Mar 26, 2:59 pm, Adam wrote

[jQuery] Using Ajax with Redirects

2009-03-30 Thread Adam
I have some content that loads in a dialog popup via ajax. For some reason when the URL redirects (i.e. 301, 302, etc.), the content never loads in the dialog. Is this normal behavior for ajax, or should the redirected content load? Thanks. do something $(".myDialog").click(function() { $

[jQuery] Re: How to load redirected content in dialog?

2009-03-30 Thread Adam
Anyone? On Mar 27, 4:39 pm, Adam wrote: > I have some content that loads in a dialog popup via ajax.  For some > reason when the URL redirects (i.e. 301, 302, etc.), the content never > loads in the dialog.  Is this normal behavior for ajax, or should the > redirected content load

[jQuery] Re: using apple-style slider

2009-03-27 Thread Adam
Anyone have any thoughts on this? Thanks in advance. -Adam On Mar 26, 2:59 pm, Adam wrote: > Im using an apple product page-style slider as described on Remy's > awesome jqueryfordesigners.com, but with content in addition to the > images. Im having some css/display is

[jQuery] How to load redirected content in dialog?

2009-03-27 Thread Adam
I have some content that loads in a dialog popup via ajax. For some reason when the URL redirects (i.e. 301, 302, etc.), the content never loads in the dialog. Is this normal behavior for ajax, or should the redirected content load? Thanks. do something $(".myDialog").click(function() {

[jQuery] using apple-style slider

2009-03-26 Thread Adam
that be the way to make this display correctly? Thanks! -Adam

[jQuery] Re: Play video in modal messages

2009-03-26 Thread Adam
Check out http://nyromodal.nyrodev.com/ ::: Adam On Mar 26, 2:43 pm, "ebru...@gmail.com" wrote: > Hello, > > I want to show a youtube video in a modal messages but the video is > different on every link. So someone presses on the link > > http://www.youtube.co

[jQuery] Temporarily disable inline onclick

2009-03-26 Thread Adam Walters
So the inline confirm is raised first, then my subsequent bound click events. Is there a means i can temporarily disable (or remove/reattach) these inline javascript events? I'm using jQuery 1.3.1 Thanks in advance, Adam Walters

[jQuery] cluetip plugin issues

2009-03-24 Thread Adam
I am trying to use the cluetip plugin to no avail. Instead of the cluetip coming up, I am taken to the website URL like a normal link. I am using this within the Liferay portal and am using the livequery plugin. I've tried this with ajaxCache set to false and true. The cluetip code is getting

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam Drew
}).end() .find('a').css({ color: '#aaa', textDecoration: 'none', float: 'left', width: '100%', outline: '0 none !important'// THIS LIN

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam Drew
hese values.. On Mar 20, 10:40 am, Martijn Houtman wrote: > On Mar 20, 2009, at 3:22 PM, Adam Drew wrote: > > > > > > > Using the dev version, I can break it down to this function..  line > > 1061 ch 4 > > > I guess i should go track down anything that's

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam Drew
Thanks For your input Martijn, Unfortunately, I'm not sure where my culprit code is yet.. so I'm not sure what options are being passed. I'm looking now for typos, extra properties or invalid attr references..\ -Adam

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam Drew
Using the dev version, I can break it down to this function.. line 1061 ch 4 I guess i should go track down anything that's playing with an elements opacity??? // from jquery.1.3.2.js // IE uses filters for opacity if ( !jQuery.support.opacity && name == "opacity" ) {

[jQuery] Re: Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam Drew
FYI, all is well in Safari as well as Firefox... The main thing in IE that breaks down is my main Tabs setup... and the only javascript error indicated is that it " Could not get display title. Invalid Argument", but that's all I can see about this. On Mar 20, 10:07 am, Adam w

[jQuery] Help tracking down error in IE8 / jquery 1.3.2

2009-03-20 Thread Adam
Message: Invalid argument. Line: 12 Char: 12949 Code: 0 URI: http://domain/shared/jquery/jquery-1.3.2.min.js I keep getting the above error In IE but Not FF.. Everything works great in FF, and almost in IE.. But I am having a hard time tracking down the cause this issue in IE... any help apprec

[jQuery] IE Selection Hiding

2009-03-19 Thread Adam Paeth
Just curious if the problem of hiding an IE selection option has been fixed or if anyone has a workaround other then keeping a hidden list of options that aren't selected. Thanks, Adam Paeth $("#option1").hide(); //works in FF, not in IE

[jQuery] Re: help with menu and show/hide divs

2009-03-14 Thread Adam Jessop
Do something like: first second third JS: $(function(ev) { $('#links a').click(function(ev){ $('#content div').hide(); id = $(this).attr('id'); $('#' + id + 'Div').show(); ); }); Un

[jQuery] Regular Expression that works everywhere but in jQuery

2009-03-06 Thread Adam
.regular-expressions.info/ javascriptexample.html), with the Firefox RegEx add-on, etc.): //strip out word cruft var scrubbed = code.html().replace(/()/gi,""); But it's not working at all. See something I'm missing/stupid I did? Thanks! Adam

[jQuery] Re: Animate using relative %

2009-03-05 Thread Adam Jessop
* * * I appreciate the help :) Again though, seems a long winded approach to something that should work using the right syntax etc right? Surely this must be a bug in jQuery of some kind? Adam. -Original Message- From

[jQuery] Re: Animate using relative %

2009-03-05 Thread Adam Jessop
I appreciate the help :) Again though, seems a long winded approach to something that should work using the right syntax etc right? Surely this must be a bug in jQuery of some kind? Adam. -Original Message- From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On

[jQuery] Re: Animate using relative %

2009-03-05 Thread Adam Jessop
bject: [jQuery] Re: Animate using relative % On Thu, Mar 5, 2009 at 8:22 AM, Adam Jessop wrote: > Sure, > > The site in question is at: http://be.0wned.co.uk Do you really expect anyone to click that link with JS enabled? ;-) I thi

[jQuery] Re: Current item child index ?

2009-03-05 Thread Adam Jessop
Give the li's an ID and just use that for the step number e.g: Step one Step two Then: $("#stepsList li").click(function() { // load stepContent ===> not a problem id = $(this).attr('id'); $("#stepFooter").html("Viewing "+ id.replace("-"," ") +" of "+$("#stepsList li").length);

[jQuery] Re: Animate using relative %

2009-03-05 Thread Adam Jessop
uot;#city").animate({ top:'-565%' },1600); This moves the position into the correct position, but proves the case that it uses px instead of % which is no good to me as on browser resize it loses its relative position. I hope this helps, please let me know if I can assi

[jQuery] Re: Animate using relative %

2009-03-05 Thread Adam Jessop
y").animate({ top:'-565%' },1600); This moves the position into the correct position, but proves the case that it uses px instead of % which is no good to me as on browser resize it loses its relative position. I hope this helps, please let me know if I can assi

[jQuery] Animate using relative %

2009-03-05 Thread Adam Jessop
1.3.2 Adam Jessop.

[jQuery] ajax() alternative to load() function?

2009-02-27 Thread Adam
Hi, Is there a way to use the ajax() function and insert html into the DOM similar to the load() function? I need to be able to catch errors and use a timeout, but replicate what load() does. Thanks.

[jQuery] forcing ajax request to stop

2009-02-23 Thread Adam
Hey, I'm looking for a way to force some known running ajax requests to stop before initiating another call.. I'm using the jQuery.ajax global events to monitor the active requests.. but in the jQuery docs, i was unable to find a method of forcing a processing request to actually stop... For ex

[jQuery] triggering a link event that has an image tag?

2009-02-13 Thread Adam
I've been trying to setup a lightbox (or similar) plugin to work with my images, but am having problems due to the tag trigger not firing. It appears that this is because jquery is triggering the event instead of the event. For example: The first one is called when I click the thumbnail, but

[jQuery] How to wait for load() to finish executing

2009-01-28 Thread Adam
How can I wait for the load() function to finish before executing the next line of code? The code that I need to execute after load() is finished cannot be called within the callback function. I basically need to return true after the load has finished but not beforehand. Here's the relevant co

[jQuery] Re: cluetip plugin crashing Firefox with external style sheet

2009-01-27 Thread Adam
}); Instead of onShow, I also tried onActivate, but the external site doesn't finish loading until after the cluetip shows, which causes the external content to not even show up. On Jan 27, 9:58 am, Adam wrote: > When using the cluetip plugin, I am loading an external url.  The tip >

[jQuery] cluetip plugin crashing Firefox with external style sheet

2009-01-27 Thread Adam
When using the cluetip plugin, I am loading an external url. The tip loads fine if my external page is plain text/html, however if I reference an external style sheet (using the tag), the plugin crashes Firefox. It's happened more than once. Is there a workaround for this other than inline sty

[jQuery] UI Dialog Position Based on Link Position

2009-01-27 Thread Adam
I'd like to open a dialog when a link is clicked, and have the dialog open beside the link, similar to a tooltip. Are there any examples on how to calculate the position where the dialog should show up? What's the best way to position it so that it shows within the confines of the page (i.e. if

[jQuery] Re: mysterious $(window).error behavior

2009-01-23 Thread Adam Fisk
It's certainly documented to work. See: http://docs.jquery.com/Events/error#fn -- particularly the examples. Straight window.onerror has all sorts of cross-browser issues which I was hoping to bypass with the jquery call. -Adam On Jan 23, 5:04 pm, Mike Alsup wrote: > > I can&#x

[jQuery] mysterious $(window).error behavior

2009-01-23 Thread Adam Fisk
's up? $(document).ready( function() { $(window).error(function(msg, url, line) { alert("Got error"); }); throw new Error("Inside doc ready error"); }); throw new Error("Outside doc ready error"); Thanks. -Adam Fisk

[jQuery] Re: Slide down and up element and remain vertical size

2009-01-23 Thread Adam
jqueryfordesigners.com has a tute about jumps in accordions- check it out. ::: Adam On Jan 22, 3:03 am, Mech7 wrote: > That is what i used first but it's very specific about the html > elements like it expects a p tag as content, that's why i decided > to make my own... :) >

[jQuery] Re: cluetip not loading external web page

2009-01-21 Thread Adam
Karl, Is there anyway to use cluetip with GET requests? My serlvet requires a query string parameter, so POST won't really work in my scenario. thanks, Adam On Jan 21, 11:07 am, Karl Swedberg wrote: > Hi Adam, > > > When I try to setup my cluetip using the apparent settin

[jQuery] Re: cluetip not loading external web page

2009-01-21 Thread Adam
cluetip. However, it opens correctly (on a user's mouse click). Here are my settings: cluetipClass: 'jtip', arrows: true, dropShadow: false, hoverIntent: false, sticky: true, mouseOutClose: true, closePosition: 'title', closeText: 'Close', activation: 'cl

[jQuery] cluetip not loading external web page

2009-01-16 Thread Adam
I have setup the cluetip plugin on my website. I was able to get it working when using local content, similar to the example code of $ ('a.title').cluetip({splitTitle: '|'}); However, I can't get it to load an external website. The tool tip comes up, but it says "sorry the contents cannot be lo

[jQuery] Trying to mesh UI slider with jCarouselLite

2009-01-14 Thread Adam
en the new # of properties in the range. I'd also be open to another option for the carousel if something else might play nicer with the slider. Thanks in advance for any help!! -Adam

[jQuery] Re: Fastest way to clear child elements from a div

2008-12-30 Thread Adam Guichard
your suggesting. On Dec 30, 2:42 pm, MorningZ wrote: > just for laughs...see of > > document.getElementById("ID of Div Tag").innerHTML = ""; > > is anything of an improvement > > On Dec 30, 3:02 pm, Adam Guichard wrote: > > > I'm using jTem

[jQuery] Fastest way to clear child elements from a div

2008-12-30 Thread Adam Guichard
I'm using jTemplates to create a client grid, but I'm having trouble with load times. When I'm paging through the grid jTemplates is taking 4+ seconds to clear the grid and 2+ seconds to load it. I've got some work to do to make the loading time go down, but I'm worried about the clearing time.

[jQuery] jQuery help

2008-12-24 Thread adam
I'm trying to change the border color of an image using it's id with jquery ( photo['id'] is passed in from a previous function ) the id's of the photos are of the form 'photo239839' $('#photo'+photo['id']+'').click(function(){ $('#photo'+photo['id']+'').css('border-color','#777')

[jQuery] Re: Submit a form automatically

2008-12-19 Thread Adam
I was planning to submit the form in a jquery dialog, read the response, and then put the response text in a new browser window. I'm probably better off just scrapping my plan and sticking to opening the form in a new window and submitting in the same window without using ajax. thanks. On Dec 1

[jQuery] Re: Submit a form automatically

2008-12-19 Thread Adam
These suggestions helped, but I now I can't figure out how to submit a form with a URL of an external site... i.e. my site is http://www.abc.com/ , but I want to submit a form to http://www.123.com/ Is this possible in ajax? Thanks, A. On Dec 13, 8:22 am, Mike Alsup wrote: > > I have a dynami

[jQuery] validation plugin negative number rule?

2008-12-19 Thread Adam
How can I create a rule in the validation plugin to disallow negative numbers. I have a text field that should accept any number > 0 thanks, A.

[jQuery] Submit a form automatically

2008-12-12 Thread Adam
I have a dynamically created form that I'd like to submit automatically after it loads. It doesn't look like forms have an onload event. I would use the window onload, but the form isn't necessarily around when the window loads - it is created later in a jquery popup. Any suggestions? I am usi

[jQuery] WordPress IMM-Glossary - request for tooltip port to JQuery

2008-12-04 Thread Adam
not working due to what I assume are conflicts between prototype and JQ. Would anyone be interested in project work to port this to JQ?? Thanks! -Adam

[jQuery] detect element width change

2008-11-21 Thread Adam
How can I detect when an element's width (or height) has changed? For instance, on a div element.

[jQuery] Re: clueTip fade out

2008-11-19 Thread Adam
Thanks for the reply, Karl. I'll keep watch for your inevitable update, whenever that may be. Adam On Nov 18, 12:17 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Adam, > > I tried to allow for animating out but wasn't able to pull it off,   > probably for reason

[jQuery] clueTip fade out

2008-11-18 Thread Adam
Hey Karl (and others) Awesome plugin, thanks. Just wondering if there's a way to make the cluetips animate out as well as in. I've tried to make it happen with hoverIntent but it ignores the over/out parameters. Anything I can do on the clueTip end for this? Thanks in advance.

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-12 Thread Adam
Beautiful! That edit worked with Ricardo's script. Thank you both very much! -Adam On Nov 12, 9:21 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Actually, Ricardo's should work if ... > > 1. you change var $this = this; to var $this = $(this); > 2. you know f

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-12 Thread Adam
Ricardo, Thanks for your response. Are you sure about this syntax? Ive tried this and there's no result. The code is not modified at all... -Adam On Nov 12, 4:09 pm, ricardobeat <[EMAIL PROTECTED]> wrote: > This should work for this specific case (separated in lines for

[jQuery] Re: selector to .wrap multiple elements in HTML

2008-11-12 Thread Adam
's get fouled up once the first function runs and the results of adding the second function are very odd. Any thoughts? Thanks (again) Karl!! -Adam On Nov 12, 2:14 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote: > Hi Adam, > > Take a look at the .wrapAll() method. that sho

[jQuery] selector to .wrap multiple elements in HTML

2008-11-12 Thread Adam
, but this seems to detect the trio, but only wrap the last p. How can I make it wrap the trio together? Thanks! -Adam

[jQuery] datepicker z-index

2008-10-28 Thread Adam Schmitz
t;absolute"); $(this).css("z-index", "30"); return {}; } }); I've also tried using zIndex instead of z-index since that's how javascript calls it. Any ideas? -- Adam "Do one thing, and do it well." -- The UNIX Philosophy

[jQuery] Using ajaxStart/Stop for multiple ajax calls

2008-10-24 Thread Adam
It's possible that I could have 2+ ajax actions running on my website at the same time, and I'd like to show a 'loading' image for each of them. When I use ajaxStart/Stop, if one ajax call starts, it shows the 'loading' image, but if that call doesn't stop before another ajax call starts, the sec

[jQuery] Re: Accessing an element's child

2008-10-22 Thread Adam Schmitz
; can access a child element via $("parent > child") but what if you're > > currently accessing the parent using the $(this) operator? Would I > > just use $(this > child) without the quotes? That doesn't stike me as > > something that would work... > > > > Thanks, > > Adam > -- Adam "Do one thing, and do it well." -- The UNIX Philosophy

[jQuery] Tooltip plugin

2008-10-22 Thread Adam Frame
om/Plugins/Tooltip/tooltip#options). The "map > area" example with 'positionLeft: true' is as close as I can find so far. Any help appreciated. Adam

[jQuery] Plugins website in IE7

2008-10-20 Thread Adam Frame
xpert. Maybe they're still working out kinks, and if already reported, apologies for duplication. Adam

[jQuery] Resizing Images in jQuery

2008-10-17 Thread Adam
I am trying to display images on the page via ajax, but they are slow loading. What I'd like to do is show a 'loading' image while the image is loading, and then load the image. The problem is, all of the images are different sizes, and so I can't set the 'loading' image to the exact size of wha

[jQuery] Re: sortable links

2008-10-16 Thread Adam
I suspect it might be an issue with the version I was using. I changed versions, and it works okay now without any hiccups. thanks, Adam On Oct 13, 11:58 am, MorningZ <[EMAIL PROTECTED]> wrote: > Hmmm... here's some example code i worked up really quick > > http://paste.

[jQuery] Re: sortable links

2008-10-16 Thread Adam
I suspect it might be an issue with the version I was using. I changed versions, and it works okay now without any hiccups. thanks, Adam On Oct 13, 11:58 am, MorningZ <[EMAIL PROTECTED]> wrote: > Hmmm... here's some example code i worked up really quick > > http://paste.

[jQuery] Re: sortable links

2008-10-16 Thread Adam
I suspect it might be an issue with the version I was using. I changed versions, and it works okay now without any hiccups. thanks, Adam On Oct 13, 11:58 am, MorningZ <[EMAIL PROTECTED]> wrote: > Hmmm... here's some example code i worked up really quick > > http://paste.

[jQuery] Re: sortable links

2008-10-13 Thread Adam
27;t want the user to go anywhere when clicking on a link, then why > use a link? > > On Oct 13, 9:50 am, Adam <[EMAIL PROTECTED]> wrote: > > Using the jquery UI plugin, I have setup a list of links (anchors) to > > be sortable, but after I sort an item, the link is execu

[jQuery] Re: sortable links

2008-10-13 Thread Adam
27;t want the user to go anywhere when clicking on a link, then why > use a link? > > On Oct 13, 9:50 am, Adam <[EMAIL PROTECTED]> wrote: > > Using the jquery UI plugin, I have setup a list of links (anchors) to > > be sortable, but after I sort an item, the link is execu

[jQuery] sortable links

2008-10-13 Thread Adam
Using the jquery UI plugin, I have setup a list of links (anchors) to be sortable, but after I sort an item, the link is executed, and I am taken to the web page for that link. Is there a way to setup the Sortable plugin to prevent this from happening?

[jQuery] Re: unsubscribe

2008-10-01 Thread Adam Weis
Steve, To unsubscribe you'll need to edit your jQuery group settings. http://groups.google.com/group/jquery-en/subscribe?hl=en Select the "No Email" option and save your settings. -Adam On Wed, Oct 1, 2008 at 7:18 PM, Steve Schnable <[EMAIL PROTECTED]> wrote: > unsubscribe! >

  1   2   >