[jQuery] How to make ajax call to subdomain

2009-12-09 Thread Kyle Decot
How do i make a ajax call using $.ajax(); to a subdomain on my website. I'm calling $.ajax() from www.example.com & the url for the call is api.example.com Thanks for any information you can provide me with.

[jQuery] Re: jquery uploader

2009-05-13 Thread Kyle Farris
Use the provided blackbird plugin to debug it. I've used this plugin and it works very well. I wouldn't be able to debug it without using the blackbird thing and writing to my php error log like so: error_log ('failed at this point'); -Kyle On May 12, 5:37 am, Vincent Majer

[jQuery] Re: question about dealing with JSON callback

2009-04-16 Thread Kyle
I'm sorry about heisting this thread, but I cannot figure out how to post to this group. I click new post, type in my prose, and click post, but it never appears in the topic list. Does anyone know what I'm doing wrong? Thanks, -K

[jQuery] Complete noob needs help setting up jquery in windows XP

2009-04-16 Thread Kyle
I am an amatuer website creator and like to use the most accepted and best methods of developing on a site. I learned how CSS simplified how HTML looks and now I've been reading about how jQuery simplifies how HTML "acts" with javascript. Right away I ran into a wall. I am using Windows XP and Mi

[jQuery] Coda Slider and FancyZoom problem

2009-04-13 Thread Kyle
jquery I would love some help... THANKS! ~Kyle~

[jQuery] New plugin: thumbnail hover popup

2009-02-27 Thread Kyle Peterson
New plugin that shows a larger image when you hover over a thumbnail. Works great in greasemonkey on different sites too. http://codebit.wordpress.com/2009/02/27/jquery-thumbnail-popup-plugin-for-greasemonkey/

[jQuery] My effects aren't working.

2009-01-19 Thread Kyle
$("#emailForm").ajaxForm({ target: "#formReturnArea", success: function(){ $("#formHelp").fadeOut("slow"); $('#formReturnArea').fadeIn("slow"); $("input").attr("disabled", true); $("textarea").attr("disabled", true); } }); is in a separate javascript

[jQuery] Toggle event only works twice.

2009-01-16 Thread Kyle
$("a[rel='toggleBoxes']").toggle( function() { $("#Box").switchClass("closedBox", "openBox", 1000); $("#rightBox").fadeIn("slow"); }, function() { $("#rightBox").fadeOut("slow"); $("#Box").switchClass("openBox", "closedBox", 1000); } ); is my code

[jQuery] JMAPS Question

2008-09-13 Thread Kyle Decot
I am creating an application in which I am plotting multiple points on a Google Map using jMaps. How do I center the map to show all the points on the map? I can only find information on centering the map over one point. Thank you for your help.

[jQuery] Selecting 'this''s parent

2008-08-27 Thread Kyle Decot
I am fairly new to jQuery so excuse me if this is a somewhat dumb question. I have a click function applied to all my links with the class "delete". How do I select the parent div of this link? I have tried the code below with no success. Thank you. Hide my parent div $(".delete").click(fun

[jQuery] xhr bug in Mac OS X Dashboard?

2008-08-22 Thread Kyle Bragger
ererror' and xhr.status == 0, all the time, no matter what. I was under the impression the Dashboard and safari/webkit are using the same engine, am I mistaken here? Anyone else have this issue and/or know a fix? Thanks, Kyle

[jQuery] Re: Some optimization

2008-06-24 Thread Kyle
is trivial to implement when the server-side-language is > generating the rows. Just use the modulus operator. If you're doing > this in PHP, Ruby, or Python, I can give you a quick snippet to do > this, assuming the data comes from an array, which it almost always > does. > > On Ju

[jQuery] Some optimization

2008-06-24 Thread Kyle
Hi everybody. I'm looking to optimize a few lines of code here. Basically, I have a table with sometimes as many as 1600 or more rows. I want to zebra stripe the table, add a clicked class (for batching the rows), and also hovering. $("table.fullWidth tr:odd").filter(":not(.last)").addClass("alt"

[jQuery] Re: slider doesn't update on click, only drag

2008-06-13 Thread Kyle
A few things. I'm a novice with the slider (started using it yesterday), the jQuery UI Google Group might be a better place to post this, and I think you should post an example on a test page somewhere. That said, try this and see if it works. $(document).ready(function(){ $("#

[jQuery] Re: Setting/removing CSS classes

2008-06-13 Thread Kyle
quot;, or added "span" to make "span.over", it worked as I was expecting it to. Might not solve your issue, but I thought it might, so here ya go! Cheers. Kyle

[jQuery] Re: Thickbox on 1.2.6 or best alternative?

2008-06-08 Thread Kyle
Wow, that's quite nice Wizzud. Too bad it doesn't use jquery, though. On Jun 8, 4:49 am, Wizzud <[EMAIL PROTECTED]> wrote: > orhttp://mjijackson.com/shadowbox/ > > On Jun 6, 1:52 am, Rey Bango <[EMAIL PROTECTED]> wrote: > > > Shane, > > > Check out this one: > > >http://leandrovieira.com/projects

[jQuery] Re: Effects/fadeTo question

2008-06-08 Thread Kyle Bradshaw
On Sun, Jun 8, 2008 at 10:17 AM, Kyle Bradshaw <[EMAIL PROTECTED]> wrote: > hover(over,out) > http://docs.jquery.com/Events/hover > > Can be set up like this in your code: > $(document).ready(function(){ > > $("a").hover(function(){ >//over >

[jQuery] Re: Corners and IE 7 problem

2008-05-18 Thread Kyle
Any work-arounds? On May 17, 8:22 pm, Kyle <[EMAIL PROTECTED]> wrote: > http://epistemicdev.info/lsn/test.php > > For the curious. First is an unordered list with floats. Second is an > unordered list with block display. Third is a handful of floating > divs. Perfect in FF,

[jQuery] Re: Corners and IE 7 problem

2008-05-17 Thread Kyle
http://epistemicdev.info/lsn/test.php For the curious. First is an unordered list with floats. Second is an unordered list with block display. Third is a handful of floating divs. Perfect in FF, Safari. Struggles in IE.

[jQuery] Re: Corners and IE 7 problem

2008-05-17 Thread Kyle
Well the problem, as far as I can tell, is that the li items are floats instead of blocks.

[jQuery] Corners and IE 7 problem

2008-05-17 Thread Kyle
I've used the jQuery Corner plugin for some time now and have always had an easy time. However, for some reason, I'm running into trouble now. The code works perfectly in FF/win, FF/mac, Safari/mac but not IE7/win (haven't tested anything else). In IE7/win it will only apply the corners to the si

[jQuery] Re: ToolTip Plug Crashes (bassistance)

2008-04-04 Thread Kyle Holder
nks, K- On Apr 3, 4:52 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Kyle Holder schrieb:> Hi, > > > I have a page with about 30 instances of the tool tip object on them. > > These are dynamically updated divs. In order to change the text > > inside the tooltip

[jQuery] Re: ToolTip Plug Crashes (bassistance)

2008-04-03 Thread Kyle Holder
Perfect. Thank You! On Apr 3, 4:52 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Kyle Holder schrieb:> Hi, > > > I have a page with about 30 instances of the tool tip object on them. > > These are dynamically updated divs. In order to change the text > > i

[jQuery] ToolTip Plug Crashes (bassistance)

2008-04-03 Thread Kyle Holder
Hi, I have a page with about 30 instances of the tool tip object on them. These are dynamically updated divs. In order to change the text inside the tooltip, you need to re-initialize them by calling $ ("#object").tooltip(). This works perfectly. However, when I do that too many times (the numb

[jQuery] Re: what editor do you use?

2008-02-13 Thread Kyle Browning
Zend Studio. On Feb 13, 2008, at 12:15 PM, Alexandre Plennevaux wrote: > aptana studio > > On Feb 13, 2008 8:49 PM, Mika Tuupola <[EMAIL PROTECTED]> wrote: >> >> >> On Feb 13, 2008, at 6:38 PM, Feijó wrote: >> >>> I changed my own a few weeks ago, now I'm using Editpad++ >>> (http://sourceforge

[jQuery] Re: Disappearing events?

2008-02-11 Thread Kyle Browning
Use either the live query plugin OR, reapply the events. The issue is, the events are added once the dom is ready. after that, the functions never get called again. So if you change out elements, your events are gone. Live Query solves this. Kyle On Feb 11, 2008 11:13 AM, Nate <[EMAIL PROTEC

[jQuery] Re: Test if jquery has loaded

2008-02-07 Thread Kyle Browning
It would give an error saying > something like "$ has no properties", or "$ is not a function". > > You could try something like this: > > if (jQuery) { alert("jQuery loaded"); } > > I haven't tested this but don't see why it wouldn'

[jQuery] Re: Test if jquery has loaded

2008-02-06 Thread Kyle Browning
$(document).ready(function() { alert('hi'); }); This uses jQuery's .ready function on the document object On Feb 6, 2008 2:41 PM, MikeeBee <[EMAIL PROTECTED]> wrote: > > Is there a small piece of code you can put on a page to test if jquery > has loaded? > > Thanks >

[jQuery] Re: on click event does not response

2008-02-06 Thread Kyle Browning
THe problem is in the order in which things are happening in your script. If you take a look at the livequery plugin this might help. But, you should apply the click after the DOM has been manipulated. Since DOM is parsed in the beginning of the page load, nothing happens when you add / remove thi

[jQuery] Re: Tab Effect

2008-01-30 Thread Kyle Browning
Hey no problem, and yea. I think they are moderated On Jan 30, 2008 7:23 AM, studiobl <[EMAIL PROTECTED]> wrote: > > Thanks, ocyrus! > > That helped! ...it does take dismayingly long for posts to show up > here. > > On Jan 29, 1:49 pm, ocyrus <[EMAIL PROTECTED]> wrote: > > I recently solved this

[jQuery] Re: AJAX file management

2008-01-29 Thread Kyle Browning
http://labs.adobe.com/technologies/air/ Air is free. On Jan 29, 2008 11:39 AM, [EMAIL PROTECTED] < [EMAIL PROTECTED]> wrote: > > Thanks for the link. I notice this goes for $289 for a commercial > license. Know anything that's freeware? > > - Dave > > On Jan 29, 11:00 am, "Glen Lipka" <[EMAIL

[jQuery] Re: Not recognizing multiple classes

2008-01-05 Thread Kyle
var whichClass = $(this).attr("class"); $("p").each(function(){ if($(this).is("."+whichClass)){ $(this).show(); } else{$(t

[jQuery] Not recognizing multiple classes

2008-01-05 Thread Kyle
I'm trying to hide all items tagged with a specific class upon clicking on a span with a similar tag. $("#tags span").click(function(){ var whichClass = $(this).attr("class"); //hide all the p's that do not match the class clicked $(

[jQuery] Re: What would you do? Cycling images

2008-01-01 Thread Kyle
good option. On Jan 1, 9:47 pm, "Glen Lipka" <[EMAIL PROTECTED]> wrote: > You dont like this one? I found it very easy to > use.http://www.malsup.com/jquery/cycle/ > > Glen* > * > On Jan 1, 2008 5:55 PM, Kyle <[EMAIL PROTECTED]> wrote: > > > >

[jQuery] What would you do? Cycling images

2008-01-01 Thread Kyle
I've seen a few plugins for this already, but none of them seem to do what I need. I also don't want to use any of these plugins that do far more than I need. I suppose I prefer a bit of simplicity. Basically, I have a handful of images that I need to cycle through every few seconds; and once fin

[jQuery] recognizing a new class appended

2007-12-17 Thread Kyle
;.deleteTag").click(function() { alert("Please work!"); }); If I recall correctly, I think I need to bind the new class to the DOM. I'm just not sure how, even after reading the documentation. Thanks for any help you can provide! Kyle

[jQuery] Re: jQuery UI already released?

2007-09-16 Thread Kyle
I am very excited about this. I hope to start on a small project for a class tonight as soon as this is released.

[jQuery] Re: Avoiding invalid markup

2007-08-19 Thread Kyle
It is in fact the former. I am prepending the image legally, thus if I were to take the source after the jQuery application, it would validate (rather, would throw the same error). That's a good idea to wrap it, though. It works! Thanks, Kyle On Aug 19, 10:18 am, bleen <[EMAIL P

[jQuery] Re: Avoiding invalid markup

2007-08-18 Thread Kyle
Code should read: $(this).hide().parent().prepend("");

[jQuery] Avoiding invalid markup

2007-08-18 Thread Kyle
$(this).hide().parent().prepend(""); This, obviously, is in the head tag. However, when I run it through the validator, it is returning an error: document type does not allow element "img" here . The element named above was found in a context where it is not allowed. This could mean that you ha

[jQuery] Re: Avoiding anonymous functions - enhancement suggestion

2007-08-18 Thread Kyle
I just wanted to comment on something that seemed really out of place, though the openness of the community has already been addressed. "People who are unwilling to become comfortable with the language they're working in (e.g., by using its available features, such as anonymous functions) shouldn

[jQuery] Re: IE bug or rookie mistake?

2007-08-10 Thread Kyle
Marc, That worked flawlessly, thanks so much! Kyle

[jQuery] IE bug or rookie mistake?

2007-08-09 Thread Kyle
ere the error could be. In FF, yo is alerted. However, in IE it is not. I've worked on this for hours and to no avail. I am pulling my hair out here. Please help! Thank you, Kyle