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.
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
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
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
I would love some help...
THANKS!
~Kyle~
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/
$("#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
$("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
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.
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
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
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
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"
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(){
$("#
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
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
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
>
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,
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.
Well the problem, as far as I can tell, is that the li items are
floats instead of blocks.
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
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
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
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
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
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
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'
$(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
>
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
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
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
var whichClass = $(this).attr("class");
$("p").each(function(){
if($(this).is("."+whichClass)){
$(this).show();
}
else{$(t
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
$(
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:
>
>
>
>
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
;.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
I am very excited about this. I hope to start on a small project for a
class tonight as soon as this is released.
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
Code should read:
$(this).hide().parent().prepend("");
$(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
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
Marc,
That worked flawlessly, thanks so much!
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
43 matches
Mail list logo