Hi,
We've been doing a slideshow for the featured content/ads on one of
our sites and I'm having problems getting the plugin to work with IE6,
I think maybe it's a CSS problem or something, but haven't nailed it
yet. Anyone that could give me advice or anything?
This is the URL of the slide: http
I'm playing around with jQTouch for an iPhone OS app that I've been
toying with off and on for a while. I wanted to try my hand building
it as a web app so I started playing with jQTouch. For reference, here
is the page+source (all my code is currently in index.html so you can
just "View Source" to
Guys,
I'm not exactly sure where to ask this question so I figure I'd start
here.
For the record, the website I am referring to can be temporarily found
here: http://www.synantus.com:801
I've got an HTML site for my mother's salon that I've been augmenting
with jQuery. One of the things I've be
I have a rather complicated application that allows a user to interact
with a volunteer management system via a user interface that is
updated by ajax calls through jQuery. I've encountered a design issue
and was hoping jQuery might save me from a redesign.
Is there a way to catch every ajax call
An example is available here for those looking the same thing:
http://malsup.com/jquery/cycle/fade-in-first.html
Just use jQuery UI "scale" effect or any other for that matter.
Hi everyone,
This question probably is easy, probably is not :). Is there a way to
apply an entry effect to Slideshow? Like the first image in the index
make it "zoom" and on page load the first image would appear with
"zoom" before everything?
Thanks!
doesn't asmx wrap the json in a soap object?
> Date: Mon, 18 May 2009 12:51:05 -0700
> Subject: [jQuery] Re: Calling ASMX from JQuery
> From: brakes...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Check in Firebug if the service returns data or a 501 error. Its
> under CONSOLE. You should
You will also struggle with css selection if you are using ie6, there are major
compatibility issues.
I would recommend you just testing your site on ie6 to see if it degrades well
on ie6.
I wouldn't count on ie6 being able to handle any new features.
> Date: Wed, 13 May 2009 03:59:58
Does it need to be in london?
> Date: Mon, 27 Apr 2009 09:27:17 -0700
> Subject: [jQuery] Where to find a jQuery Developer?
> From: nmiddlew...@googlemail.com
> To: jquery-en@googlegroups.com
>
>
> Hello,
>
> Does anyone know where I can post a wanted Ad for a London based
> jQuery developer
$(document).ready(function(){alert("jquery");});
> Date: Sat, 25 Apr 2009 16:30:08 -0700
> Subject: [jQuery] jQuery installed
> From: tcolo...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> How I can check that jQuery is installed (worked)?
>
> Another words check the string src="jquery.j
gt; var time = "Local Time: _Hours:_Minutes:_Seconds".replace(/_(\w+)/
> g, function(a,b){
> var d = new Date()['get'+b]()
> return d<10 ? '0'+d : d;
> });
> self.text( time );
> setTimeout(arguments.callee, 1000)
why do you need to give it a class programmaticaly?
try this:
$("ul a").addClass("highlight");
http://docs.jquery.com/Selectors/descendant#ancestordescendant
_
Share your photos with Windows Live Photos – Free.
http://clk.atdmt.c
is this using the css sprites technique?
> Date: Thu, 23 Apr 2009 13:14:31 -0700
> Subject: [jQuery] creating an animated PNG loader pinwheel (sprite)
> From: adambu...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> So I was trying to think of a way to create what was effectively a PNG
> anim
I often find that sometimes $(this).html will work.
> Date: Wed, 22 Apr 2009 19:49:13 -0700
> Subject: [jQuery] Re: Infinite Recall Over a Fixed Interval
> From: kiu...@mac.com
> To: jquery-en@googlegroups.com
>
>
> On Apr 22, 5:29 pm, James wrote:
> > Something like the below?
> >
> > (functi
cant you change your anonymous function for a seperate named function that
takes in the html element name funcclock(elem, interval).
the fn command can run it once funcclock($(this));
the function can then rerun itself with setTimeout("funcname", interval);
> Date: Wed, 22 Apr 2009 16:40:35 -0
facebox
> Date: Wed, 22 Apr 2009 05:10:29 -0700
> Subject: [jQuery] Nice lightbox variant?
> From: sne...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> hi,
>
> I want to use a lightbox (clone) for showing forms (like login,
> register etc.).
>
> I looked at Lightbox and Simplemodal. Are t
try ocupload, or one click uploader.
> Date: Fri, 17 Apr 2009 08:02:32 +0700
> From: donnykur...@gmail.com
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: upload file
>
>
> ybs@gmail.com wrote:
> > I seach a simple way to upload file using ajax and jquery
> >
>
> http://malsup.co
you can also make custom attributes, they don't have to be called "rel" so you
can have as many attributes as you want.
> Date: Thu, 16 Apr 2009 15:15:44 -0700
> Subject: [jQuery] Re: passing more than 1 param via click()?
> From: kgos...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> That's
i think itll be covered in this.
http://stackoverflow.com/questions/224820/how-do-you-pass-arguments-to-anonymous-functions-in-javascript
> Date: Thu, 16 Apr 2009 14:46:41 -0700
> Subject: [jQuery] passing more than 1 param via click()?
> From: kgos...@gmail.com
> To: jquery-en@googlegroups.com
like that. It is terse, and very elegant, but not
> > all that readable from a "coding for the next guy" mentality.
> >
> > _
> >
> > From: jquery-en@googlegroups.com [mailto:jquery...@googlegroups.com] On
> > Behalf Of Joseph Le Brech
> > S
I'm impressed by the [] brackets, does that eval() the 'hide' and 'show'
strings?
> Date: Thu, 16 Apr 2009 14:08:09 -0700
> Subject: [jQuery] Re: Shorten the JQuery code
> From: michaell...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> $('#no-defs')[$('.def').length==0?'show':'hide']();
>
or try
ndfs=$('#no-defs');($('.def').length == 0) ? ndfs.show() : ndfs.hide();
> Date: Thu, 16 Apr 2009 13:54:07 -0700
> Subject: [jQuery] Re: Shorten the JQuery code
> From: morni...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> There isn't much you can do with that since you can't conditi
If you are genuinely asking that question! then no, it's not safe!!
> Date: Thu, 9 Apr 2009 03:22:27 -0700
> Subject: [jQuery] Is jquery safe ?
> From: erdeveshmis...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Hi,
>
> I am using the latest version of jquery. I want to confirm that is
> t
sorry in advance if this doesn't work straight off, im typing from hotmail
directly.
try
if(len($("#chk1 :checked"))>0){
}
or
if($("#chk1").attr("checked")==true){
}
> Date: Tue, 7 Apr 2009 23:15:29 -0700
> Subject: [jQuery] Find if a checkbox is ticked or not by user
>
t; > as i said before i see in output only one alert box so the event
> > > handler callback is just called once. I don't change anything in the
> > > origjnal selectbox
> >
> > > On Apr 8, 10:49 am, Joseph Le Brech wrote:
> >
> > > > Can you pu
where your anchor tag?
> Date: Wed, 8 Apr 2009 02:59:08 -0700
> From: ayssel...@gmail.com
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: addClass on ahref link on the fly
>
>
>
> Thanks for the quick reply evo-2 : it's run! I've tried this before but not
> with the ul balise maybe w
Can you put a breakpoint to see if it runs change twice?
Do you change the value and the text or something similar?
> Date: Wed, 8 Apr 2009 00:49:45 -0700
> Subject: [jQuery] Re: Jquery makes two ajax requests in one!!
> From: marcomenozz...@gmail.com
> To: jquery-en@googlegroups.com
>
>
>
Nevermind... turns out someone had put a "float:left" on LI. I just
added a "float:none" and now everything works fine.
On Apr 3, 4:07 pm, Joseph Cocco wrote:
> some basic info:
> jQuery: 1.3.2
> Plugin: Jörn Zaefferer'sTreeviewplugin (1.4.1)
> coding wi
some basic info:
jQuery: 1.3.2
Plugin: Jörn Zaefferer's Treeview plugin (1.4.1)
coding with asp.net c#
We are building out the HTML for the treeview in the codebehind, and
then adding it to the innerHTML of a UL already on the page. This has
not given us any issues in IE. The treeview renders p
It think you have to "return false" in order to stop form submition. Is that
what you meant?
> Date: Thu, 2 Apr 2009 20:37:01 -0700
> Subject: [jQuery] How to cancel events
> From: iceange...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> How can i cancel a change event? i have validated te
do not underestimate the power of $()
> Date: Mon, 30 Mar 2009 08:36:48 -0700
> Subject: [jQuery] Re: HELP: a = $('foobar');
> a.after('xyz') not adding element
> From: stephen.cant...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Thanks (late) to everybody for answering.Saw your posts jus
because you are updating i asyncronously it will be overwritten asynconously.
what you could do is add your "purged" data to an array, and read that array
elsewhere in a loop.
> Date: Mon, 30 Mar 2009 07:20:21 -0700
> Subject: [jQuery] Re: How to access variable outside function
> From: ice
From: iceange...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> hmm... is there a diff bet
>
> .getJSON("url", function_name);
>
> function function_name(json) {
>
> }
>
> and
>
> getJSON("url", function(json){ ... });
>
> On Mar 3
get rid of the curly braces at the end of the delegate call also :)
i accidentally left them in.
From: martijn.hout...@gmail.com
Subject: [jQuery] Re: How to wait for getJSON to complete before continue?
Date: Mon, 30 Mar 2009 15:55:40 +0200
To: jquery-en@googlegroups.com
On Mar 30, 20
.getJSON("url", function_name(json) {});
/* elsewhere */
function function_name(json){
}
_
View your Twitter and Flickr updates from one place – Learn more!
http://clk.atdmt.com/UKM/go/137984870/direct/01/
have you got firebug?
use the inspector to find out what it produces.
From: css.mau...@gmail.com
To: jquery-en@googlegroups.com
Subject: [jQuery] Re: getJSON() response into a table
Date: Sat, 21 Mar 2009 15:23:31 -0300
Hi Joseph,
Thanks, but this didn't solve.
Any ideas?
Mau
$.getJSON("url", function(json){
$(json).each(function(){
row = $("#table").append("");
$(row).append("").html(json.cell1.value);
$(row).append("").html(json.cell2.value);
});
});
something like this?
sorry im just coding this blind from my email account.
>
you want to play .au files to keep cpu responses quick with the sacrifice of a
little bandwidth
> Date: Mon, 16 Mar 2009 09:31:47 +
> From: radioactiv...@gmail.com
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: How to play a sound on click and embed a bg sound
>
>
> As much as I
I don't get this, isn't javascript supposed to be part of the view layer? maybe
at a stretch part of the controller layer.
is this something similar to google gears where the model is stored in cookies
too?
> From: blackange...@gmail.com
> To: jquery-en@googlegroups.com
> Subject: [jQuery]
@googlemail.com
To: jquery-en@googlegroups.com
Do i access "data" like this;
$("example").html(data);
On Wed, Mar 11, 2009 at 3:11 PM, Joseph Le Brech wrote:
you should be sanitising your sql aswell.
> Date: Wed, 11 Mar 2009 08:00:23 -0700
> Subject
you should be sanitising your sql aswell.
> Date: Wed, 11 Mar 2009 08:00:23 -0700
> Subject: [jQuery] Re: AutoComplete
> From: morni...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> What is the purpose of the ".get()" ?
>
> The autocomplete plugin already has the ajax call all wired into i
$("").appendTo("#myList").html("Please show up");
the one you used those should also work tho.
> Date: Tue, 10 Mar 2009 14:18:57 -0700
> Subject: [jQuery] add to
> From: elsch...@googlemail.com
> To: jquery-en@googlegroups.com
>
>
> Hi there,
> I am probably trying the most basic example and
What about something like this?
$($(opener.document).find("#injectHere")).append(newElement);
> Date: Tue, 10 Mar 2009 08:32:28 -0700
> Subject: [jQuery] .append misbehavior in MSIE7 with cross-window element
> injection
> From: nekura.n...@gmail.com
> To: jquery-en@googlegroups.com
>
>
just a wild guess but have you tried this.str?
> Date: Mon, 9 Mar 2009 22:15:27 -0700
> Subject: [jQuery] How can I use VAR str into json object
> From: gordiany...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> var str = "hello";
> var json = {
> str: "123"
> }
>
> I know this is not jquer
try $(li)[0].remove();
or
$(li[0]).remove();
> Date: Mon, 9 Mar 2009 03:53:47 -0700
> Subject: [jQuery] How to remove li inside UL
> From: nirajke...@lucent.com
> To: jquery-en@googlegroups.com
>
>
> Hi,
>
> I want to remove selected list items from a UL. Can i do using remove
> ().
>
x27;Hello World');
> $(".HelloWorld").text(obj);
> },
> error: function(x, y, z) {
> alert(x.responseText);
> alert(y.responseText);
> alert(z.responseText);
> }
> });
>
>
> Additionally y.responseText and z.responseText come out as undefined.
>
s that your ASP.NET
> code can't parse the results to JSON
>
>
>
> On Mar 4, 11:02 am, Joseph Le Brech wrote:
> > get firebug and put a breakpoint on for the line for error.
> >
> >
> >
> > > Date: Wed, 4 Mar 2009 07:58:45 -0800
> > >
get firebug and put a breakpoint on for the line for error.
> Date: Wed, 4 Mar 2009 07:58:45 -0800
> Subject: [jQuery] Re: Ajax Dot Net Plugin
> From: cakeordeat...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> P.S.
>
> alert(y) gives Not Found
> alert(z) gives SyntaxError: JSON.parse
>
>
-item-selected")').eq(index + 1).trigger('click');
});
});
:after is not documented on the jquery selector page:
http://docs.jquery.com/Selectors
should it be added?
On Wed, Mar 4, 2009 at 4:21 PM, Joseph Le Brech
you should be able to use the :after pseudo element
http://www.w3.org/TR/CSS2/selector.html#before-and-after
> Date: Wed, 4 Mar 2009 16:10:03 +0100
> Subject: [jQuery] next() question
> From: aplennev...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Hello,
>
> say i have this markup:
Daym Barrack is L33t!!
> Date: Wed, 4 Mar 2009 12:31:44 +0500
> Subject: [jQuery] Re: new Whitehouse.gov uses jQuery 1.2.9
> From: ilovejqu...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> It's OK Brad,
>
> It was discussed here previously and probably the whole internet knows
> by now :))
plugin
http://tablesorter.com/docs/
> Date: Mon, 2 Mar 2009 19:35:00 -0800
> Subject: [jQuery] Reordering rows using JQuery
> From: sandeshm...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> I have an aspx page that looks something like this:
>
>
> Some label
> Some complex control
>
get firebug, it will let you step through your code.
> From: r...@whitestonemedia.com
> To: jquery-en@googlegroups.com
> Subject: [jQuery] Re: cant get jquery to work
> Date: Mon, 2 Mar 2009 10:38:41 -0500
>
>
> on this line:
>
> alert("Thanks for visiting!");)
>
> take out the last ")"...it
My project has an example of getJSON() here.
http://code.google.com/p/ajaxmmo/source/browse/trunk/src/static/default.js#105
> Date: Mon, 2 Mar 2009 03:12:34 -0800
> Subject: [jQuery] Re: $.getJSON
> From: seas...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Using console.log and fire
try and use ocupload that's worked a treat for me in the past.
> Date: Fri, 27 Feb 2009 04:09:48 -0800
> Subject: [jQuery] Re: AJAX File Upload Options
> From: dyla...@gmail.com
> To: jquery-en@googlegroups.com
>
>
> Here's the actual site I got the idea from, with source code.
> http://www.am
hi i'm also a newby.try with something simple to see whether you have set
jquery well.even copy and paste from a tuorial.just to be sure your are not
looking for something elsewhere.
2008/6/4 gandalf458 <[EMAIL PROTECTED]>:
>
> I'm trying my first simple jQuery task, a mouseover event to display
Rey,
Great news indeed!
Twitter has fully replaced 99% of my RSS feeds, so this is truly a
good idea ; )
I am following you guys!
Cheers,
Joseph Hurtado
Web Developer
Toronto, Canada
On Apr 27, 3:05 pm, Rey Bango <[EMAIL PROTECTED]> wrote:
> In an effort to maximize the
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
I am out of the office today, Monday 12/16/2007. I will be back in the
office Tuesday 12/17/2007.
If you need to reach me due to an emergency, please call my mobile at
770.367.8401.
Thanks,
Joe
mments are very welcome
Kind regards
Joseph Wenninger
71 matches
Mail list logo