> If you're feeling brave you could alter the bind() function to add a
> new attribute to the element, to flag that a particular event has been
> attached.
>
> Karl Rudd
>
> On Sat, Aug 16, 2008 at 7:21 AM, chrismarx <[EMAIL PROTECTED]> wrote:
>
> > nobody e
with dom elements that actually exist, your example works fine.
perhaps there is a problem elsewhere...
On Apr 3, 8:19 pm, ScottBruin <[EMAIL PROTECTED]> wrote:
> Please pardon my poor understanding of javascript basics:
>
> I've been using the following method to create an object array of
> vari
interesting, for what purpose would you use this functionality?
why not just
var monkey = {name:'Dave',
climb:function(){alert(this.name + 'is
climbing');}
monkey.climb();
On Apr 2, 8:02 am, Thom <[EMAIL PROTECTED]> wrote:
> This works:
>
> var monkey = { name: 'Dave' }
> $(
i think you might be looking for something like rhino
http://www.mozilla.org/rhino/
or maybe this
http://ejohn.org/projects/bringing-the-browser-to-the-server/
On Mar 30, 4:32 pm, ClaudeFr <[EMAIL PROTECTED]> wrote:
> Hello!
> First, thanks for the wonderful validation plugin :-)
> Then, wha
i am too, trying to spread the word. I love that google put this on
the search page, I wonder how putting out this information to such a
large audience will affect participation (hopefully positively!)-
On Mar 29, 5:03 pm, [EMAIL PROTECTED] wrote:
> Anyone participating?
>
> http://www3.earthhour
well, could you show us how your multidimensional array is being
populated? it looks like there is not object that the position you're
looking for-
On Mar 29, 1:04 pm, Tadas J <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I have a problem with arrays. I am getting data from xml and trying to
> get data
first, for all ie problems, you need to get debugbar and companion,
they're like firebug for IE. what you also get is the ability to see
your code as it looks once ie has interpreted it. in this case, it
looks like some of your comments are actually commenting
out your script. i ran the script in
well for one, its
setTimeout()
not
setTimeOut()
perhaps you can make that change and then get back to us-
On Mar 29, 1:43 pm, Cronlajoon <[EMAIL PROTECTED]> wrote:
> Hi!
>
> I'm currently taking my first steps again my own first plugin. As you
> probably already figured out, it's not working.
this works, but maybe there is also an easier way out there somewhere-
$("[id='something.somethingelse']")
On Mar 24, 2:00 pm, Harald Armin Massa <[EMAIL PROTECTED]>
wrote:
> hello,
>
> I am in the process of moving to jQuery.
>
> One challenge is: many of the relevant IDs of Elements have one
i've used this instead;
$('table[class="cl1 cl2"]').addClas('abc');
On Mar 9, 12:36 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Jason's suggestion should work for the first table:
>
> > $('table.cl1.cl2').addClass('abc');
>
> If you want a selector for the second table exclusively, try this:
if you load the minified or packed version of jquery, and have gzip
compression on your server (which everyone should have anyways),
jquery is only around 15kb! is that heavy?
On Mar 5, 10:51 am, Jonny <[EMAIL PROTECTED]> wrote:
> Ok, sorry, never mind, I guess there was just a delay in this post
Quick question. There is a parent page that uses jquery and iframe in
that page, which loads a page that also uses jquery. I would like the
child parent to use the parent's instance of jquery. i tried:
var jQuery, $; $ = window.parent.$;
jQuery = window.parent.jQuery;
which actually loads witho
a link to your page would be helpful-
On Feb 25, 9:37 am, Tal <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> I mannaged to get the JCarousel working perfectly in IE but in Firefox
> Mozilla the previous and next arrow buttons dont show.
>
> Im using the static_controls.html model from the examples and
check out the configuration section of the jcarousel documentation
http://sorgalla.com/projects/jcarousel/
(for you question, use the visible property)
On Feb 20, 7:44 pm, Richi3f <[EMAIL PROTECTED]> wrote:
> Hi,
> I'm new here and I'm just a beginner. The jcarousel's great! I loved
> it since
first off, for ie problem, if you havent got it already, check out the
ie debugbar and companion js, they come very close to firefox for
debugging ie problem. secondly, on loading the page i get errors from
one of the packed scripts that uses eval. i have run into trouble with
scripts that are pac
im not sure you really need jquery for this, or at least not much.
just set your div width and height to 100%
$("yourDiv").css({width:"100%",height:"100%"});
On Jan 31, 3:48 pm, "[EMAIL PROTECTED]"
<[EMAIL PROTECTED]> wrote:
> Hello :)
>
> Thanks for the multitude of helpful threads you people p
should clone also work for behaviors that were not added by jquery?
(like a google map?) i tried to clone a div with a google map, and
although clone successfully copied all the elements, the behaviors
were lost. append did the job for a workaround. should clone(true) be
able to also grab all the
i agree, i don think any plugin will be able to keep up with all the
new developments. unless you want a super simple map. are you
interested in a jstl version?
On Jan 29, 5:12 am, Bohdan Ganicky <[EMAIL PROTECTED]> wrote:
> Hi Chris,
> Mika is absolutely right. Google Maps API is itself quite si
>
> Charles:I put the project online: look here donkeyshot.ch
>
> Thanks again!
> tom
>
> On Jan 25, 1:18 am, chrismarx <[EMAIL PROTECTED]> wrote:
>
> > well for starters, i would write your first function like this:
>
> > $("#logo").cli
well for starters, i would write your first function like this:
$("#logo").click(function() {
$(this).fadeOut("slow").animate({opacity: 0.0}, 500 );
$("#content").fadeIn("slow");
});
but doesnt fadeOut already set the opacity to 0?
On Jan 24, 3:18 pm, "Charles K. Clarkson" <[EMAIL P
maybe you could modify this to listen for mousemoves?
http://www.freewebs.com/flesler/jQuery.ScrollTo/
On Jan 24, 10:57 am, "Rick Faircloth" <[EMAIL PROTECTED]>
wrote:
> I'd love to see that, too, but with the option to leave off
> the scrollbars. (Which may be an option already, I didn't take
thanks so much for your time investigating this. i too started playing
wiih the idea of using a jquery function, but i didnt understand why
it worked for otherr jquery methods and not livequery. i learned a lot
reading your post! thanks!
On Jan 23, 4:32 am, h0tzen <[EMAIL PROTECTED]> wrote:
> i f
ot;]').livequery(function(){
var $this = $(this);
var opts = function(){
g.ratingOpts.self = $this;
g.ratingOpts.curvalue = parseInt($this.attr("rate"));
return g.ratingOpts;
}();
$this.rating(opts);
})
})
well, yeah it would be, if i were smart enough to figure out how to
actually use in the context of jquery chained functions. the above
example is what i want it to do. the closest i got was this:
( $('div[class="rating"]').livequery(function(){
var $this = $(this);
var opts = func
I'd like to be able to do something like this
//Extend Function for easy callbacks
Function.prototype.andThen=function(g) {
var f=this;
return function() {
f();g();
}
};
$('div[class="rating"]').livequery(function(){
var $this = $(this);
var opts = function(){
this returned a myVal of 2007:
$(document).ready(function(){
$.ajax({
type: "GET",
url:"jquery_test.xml", //your xml
data: "",
dataType: "xml",
success: function(data,textStatus) {
i believe this is expected behavior, it would be a security risk to
allow script access to file inputs-
On Jan 20, 7:32 pm, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote:
> on 1/6/08 11:55 PM, chrismarx at [EMAIL PROTECTED] wrote:
>
>
>
>
>
> > best to se
yeah, the color plugin, its sweet.
http://plugins.jquery.com/project/color
On Jan 21, 7:21 am, "Stefan Kilp [sk-software]" <[EMAIL PROTECTED]>
wrote:
> hi,
>
> what is the best way to animate background-color with jquery.
>
> i tried
>
> $j(this).animate({backgroundColor:"#ff"}, 2000)
>
> to
id like to run this code
if ( this.vml_capable ) {
document.namespaces.add("v","urn:schemas-microsoft-com:vml");
document.createStyleSheet().addRule("v\\:*",
"behavior:url(#default#VML); position:absolute" );
...etc
but i get an error even when run
i posted this over at jqueryUI forum, but there doesnt seem to be a
whole lot of acitvity over there.
the problem is here-
http://groups.google.com/group/jquery-ui/browse_thread/thread/653876bcc27ade9b
}).appendTo("#c-rply-to0")
}
})
}
On Jan 9, 11:42 pm, chrismarx <[EMAIL PROTECTED]> wrote:
> i'm looking for a plugin or code to sort an existing list of li
> elements, without going back to the server. anyone seen this already?
i'm looking for a plugin or code to sort an existing list of li
elements, without going back to the server. anyone seen this already?
g a double quote:
> (that's a single quote followed by a
> double right after id+
> In the second, #('#c-r"+id"") should be $('#c-r'+id)
>
> See if that works
> Danny
>
> On Jan 6, 4:28 pm,chrismarx<[EMAIL PROTECTED]> wrote:
>
> &g
can u post a link?
On Jan 6, 4:52 pm, chrismarx <[EMAIL PROTECTED]> wrote:
> if you're using jquery u dont even need a form. but if you do want to
> serialize your parameters, that's fine. i think the easiest thing to
> do is to give your form an id, making it easy for
best to see the live page-
On Jan 6, 9:32 pm, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote:
> on 1/6/08 5:29 PM, chrismarx at [EMAIL PROTECTED] wrote:
>
>
>
>
>
> > first, it would be better jquery technique to bind your img outside of
> >
first, it would be better jquery technique to bind your img outside of
the onclick
$('#imgID').click(function(){
$('#logo').click();
});
what function is executed when you trigger the click event on the logo
input?
On Jan 6, 5:46 pm, "Steffan A. Cline" <[EMAIL PROTECTED]> wrote:
> Runn
if you're using jquery u dont even need a form. but if you do want to
serialize your parameters, that's fine. i think the easiest thing to
do is to give your form an id, making it easy for jquery to find it.
once you've got that, everything else should be easy-
On Jan 6, 10:21 am, marcus <[EMAIL
in firefox this works fine
var id = 1;
$parent.append('');
#("#c-r"+id"").append("");
that didnt work either. i had to resort to this
var iediv = document.getElementById("c-r"+id);
var newElem = document.createElement('ul');
newElem.id = "c-rply-to"+id+"";
iediv.appendChild(newElem);
can some
personally, i love using jquery thusly for parsing xml
var xml = data;
var path = "subscr.Subscriber>subscriberId";
for (var i=0;i<$(path,xml).length;i++){
alert( $(""+path+":eq("+i+")").text() )
}
On Jan 4, 3:09 pm, Jamie <[EMAIL PROTECTED]> wrote:
> Hey,
>
> I am attemptin
ks for the help-
On Jan 4, 9:07 pm, Wizzud <[EMAIL PROTECTED]> wrote:
> On Jan 3, 4:17 pm,chrismarx<[EMAIL PROTECTED]> wrote:
>
> > hi,
> > this works fine
>
> > $elem.animate( {opacity:0}, 600, callback)
> > .animate( {height:"hide"},
ok, yeah that works. i guess i was wondering how to make it work with
the "queue" option.
i ended up just putting the callback in the second animate call
$elem.animate( {opacity:0}, {queue:false, duration:600} )
.animate( {height:"hide"}, 700, callback );
On Jan 4, 11:15 am, Alexandre P
anyone?
On Jan 3, 11:17 am, chrismarx <[EMAIL PROTECTED]> wrote:
> hi,
> this works fine
>
> $elem.animate( {opacity:0}, 600, callback)
> .animate( {height:"hide"}, 700);
>
> but this doesn't
>
> $elem.animate( {opacity:0}, {queue:fals
n't select anything. Add '*' after it, e.g.:
>
> $('comments>comment:eq('+i+')>*',xml)
>
> That should select all child elements.
>
> Karl Rudd
>
> On Jan 4, 2008 8:28 AM, chrismarx <[EMAIL PROTECTED]> wrote:
>
>
>
> > this
this one's odd.
this works:
$('comments>comment:eq('+i+')',xml).each(function(){
responses[i][$(this).attr("NAME")] = $(this).text();
});
but this doesn't:
$('comments>comment:eq('+i+')>',xml).each(function(){
responses[i][$(this).attr("NAME")] = $(this).text();
});
hi,
this works fine
$elem.animate( {opacity:0}, 600, callback)
.animate( {height:"hide"}, 700);
but this doesn't
$elem.animate( {opacity:0}, {queue:false, duration:600}, callback)
.animate( {height:"hide"}, 700);
nor this
$elem.animate( {opacity:0}, {queue:false, duration
oh, nice, i just saw the standalone part. im downloading it now,
anything ill need to do to get jquery support?
On Nov 28, 4:24 pm, "Dan G. Switzer, II" <[EMAIL PROTECTED]>
wrote:
> Chris,
>
> >thanks, ill look in to that, but for the time being, i develop in java
> >with eclipse, and i'd like to
thanks, ill look in to that, but for the time being, i develop in java
with eclipse, and i'd like to just keep using that. any other ideas?
On Nov 28, 8:19 am, Giovanni Battista Lenoci <[EMAIL PROTECTED]>
wrote:
> Hi, I've read this post:
>
> http://www.aptana.com/forums/viewtopic.php?t=3362
>
>
JSEclipse has stated that they don't support jQuery, but with the
ability to add your own libraries, I was wondering whether anyone has
taken the time to put something together, so we could get jQuery code
completion in jseclipse!!
sweet!! thanks
On Nov 19, 12:21 pm, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> On Nov 19, 2007, at 7:23 AM, chrismarx wrote:
>
>
>
>
>
> > anybody?
>
> > On Nov 13, 11:50 pm, chrismarx <[EMAIL PROTECTED]> wrote:
> >> I'd like
anybody?
On Nov 13, 11:50 pm, chrismarx <[EMAIL PROTECTED]> wrote:
> I'd like to keep up with the new jquery release and abandon my xpath
> code for parsing xml, but I haven't seen anything that will do what i
> need. Here's an example of what i did w
TECTED]> wrote:
> $('#iframeTable').contents().find('td');
>
> Ariel Flesler
>
> On Nov 15, 8:25 am, chrismarx <[EMAIL PROTECTED]> wrote:
>
> > What would be a jQuery equivalent for this
>
> > iFrameTable.document.getElementsByTagName("td")
>
> > if iFrameTable is the id of the iframe?
What would be a jQuery equivalent for this
iFrameTable.document.getElementsByTagName("td")
if iFrameTable is the id of the iframe?
I'd like to keep up with the new jquery release and abandon my xpath
code for parsing xml, but I haven't seen anything that will do what i
need. Here's an example of what i did with xpath:
//xml
http://earth.google.com/kml/2.0";>
Final_Label_geom
53 matches
Mail list logo