sorry for the bad english :)
luciano
to manage all of the possible transition effects. If you need right
> alignment then your best bet would be to wrap your images inside a
> div. Cycle will then treat the divs as the slides and you can right
> align your images inside the divs.
>
> Mike
Thanks a lot Mike!
that worked great! :)
best regards
luciano
option in jquery to change them to
right?
best regards, and sorry for the bad english :)
luciano
I'm trying to use the function Not ():
when I run the command on the TAG "A" and works
$ (this). find ( "a"). not ( '[href ^="/"]'). attr ( "target", "")
when I run the command on the tag "IMG" not working
$ (this). find ( "img"). not ( '[src ^="/"]'). attr ( "target",
"")
what may be h
n using find(), just select by ID as a subset of the
DOM node..
alert($(html).find("#test") becomes
alert($("#test", html));
Hope some of this helps... cheers!
Nic Luciano
Senior Web Developer @ AdaptiveBlue
http://www.twitter.com/nicluciano
http://www.linkedin.com/in/niclucian
Oh wow, I didn't realize JSON would act like an associative array in that
way...
Thanks guys!
On Fri, Feb 13, 2009 at 7:10 PM, Josh Nathanson wrote:
>
> foo[fooProp] // returns "barVal"
>
> Is that what you mean?
>
> -- Josh
>
>
>
> -Original Message-
> From: jquery-en@googlegroups.com [
I considered it, but because of the ambiguity I run into I just need
to specify every single Css property... Thought there might be
something clever I could do with jquery but pobably not... Thanks
Sent from my iPhone
On Feb 12, 2009, at 12:08 AM, Ricardo Tomasi
wrote:
You could a u
Close but You should be using .get() for this, with an onsuccess
callback (also see datatype). .getscript is solely for loading
javascript files to execute.
Sent from my iPhone
On Feb 11, 2009, at 11:13 PM, "brian.overl...@gmail.com" > wrote:
I'm using $.getScript to get XML from a rem
everything went OK).
Data type is the format of the data you are expecting to return (html for
plain html to insert into your document, json for js objects, etc)...
Nic Luciano
http://www.twitter.com/nicluciano
http://www.linkedin.com/in/nicluciano
On Wed, Feb 11, 2009 at 8:52 PM, Tim Johnson wro
You should think about using jQuery's ajax (
http://docs.jquery.com/Ajax/jQuery.ajax#options) while you're at it... if
you did, you could attach your .corners() function to ajaxComplete (
http://docs.jquery.com/Ajax/ajaxComplete#callback) so you wouldn't have to
include it in every call. Glad to he
Hey Jack-
I think this is the right group for these issues:... :)
http://groups.google.com/group/jquery-dev
Nic Luciano
http://www.twitter.com/nicluciano
http://www.linkedin.com/in/nicluciano
On Wed, Feb 11, 2009 at 9:53 PM, jack wrote:
>
> The following works on before Version:
&g
PS - Again, I don't even know for sure if this is the issue. :)
On Wed, Feb 11, 2009 at 10:32 PM, Nic Luciano wrote:
> Hey Davis...
>
> So, the issue is that your calling corners once, it executes on all the
> elements currently IN the document. When you load new elements via
Hey Davis...
So, the issue is that your calling corners once, it executes on all the
elements currently IN the document. When you load new elements via AJAX,
they are appended AFTER corners has already done it's magic.
So where it says...
if (xmlHttp.readyState == 4){
var res = xmlHttp.respo
You need to be executing the Javascript in the callback of your AJAX
function, NOT in the head of the document you are loading.
Aside, if you are using jQuery anyway you should consider using it's own
AJAX functions...
On Wed, Feb 11, 2009 at 10:06 PM, Davis wrote:
>
> hello,
>
> first, i just
$("div :last-child");
(or this wacky way I tried before I learned CSS selectors
$("div").children()[$("div").children().size() - 1])...)
Nic Luciano
http://www.twitter.com/nicluciano
http://www.linkedin.com/in/nicluciano
On Wed, Feb 11, 2009 at 9:49 PM, Ri
ta
in your success callback, just re-execute your .corners() function.
If that's not right it should point you in the right direction... cheers!
Nic Luciano
http://www.twitter.com/nicluciano
http://www.linkedin.com/in/nicluciano
On Wed, Feb 11, 2009 at 9:35 PM, Davis wrote:
>
>
Try starting a timer on mouse down, and only register the click event
if the timer is less than x milliseconds. The fringe case for this
would be users who click for seconds, or who drag in milliseconds.
I'm .positive. this is not the best possible way to handle this, but
it could be a la
What exactly are you trying to do, what is the issue? Maybe just preference
here (and I'm also just guessing what you're asking) but I don't see a
reason not to put the events on the elements themselves
$("ul li a").click(function() {
$(this).parent().parent().find(".active").removeClass("
Hey Bartee,
I think your problem is that .length() returns the number of elements in the
object you're acting on. In you're case, there's only one object (a text
node). So, it should return one. What you're actually looking for is
$("div#div2").text().length;
On Mon, Jan 19, 2009 at 12:25 PM, bar
It's unlikely there's a plugin to do what you want to do since javascript is
client side, and saving to any sort of database would require at least some
web service.
On Sun, Jan 18, 2009 at 12:46 PM, Pragan wrote:
>
> Hi,
>
> I am looking to implement a rating system using thumbs up thumbs down.
Anyone? I was looking forward to using jQuery in the extension but I might
have to do without... :[
On Fri, Jan 16, 2009 at 3:47 PM, Nic Luciano wrote:
> Hm, that makes sense. So, I suppose I could do something like
>
> jQuery.noConflict();
> var doc = window.content.document;
&
> >
> > --Karl
> >
> > ____
> > Karl Swedbergwww.englishrules.comwww.learningjquery.com
> >
> > On Jan 17, 2009, at 3:39 PM, Nic Luciano wrote:
> >
> > > That's true, but that's exactly ho
That's true, but that's exactly how it's supposed to function.
On Sat, Jan 17, 2009 at 3:35 PM, jQuery Lover wrote:
>
> No he is not!
>
> Suppose you have this scenario:
>
>
>
>Home
>Rules
> Pilots
> Briefing
> IGC
Simple correction, I meant the first child of it's parent*. Just in case it
wasn't clear.
Cheers-
Nic
http://www.twitter.com/nicluciano
On Sat, Jan 17, 2009 at 2:05 PM, Nic Luciano wrote:
> The reason it's not working is you're using the first-child selector. What
>
The reason it's not working is you're using the first-child selector. What
you're doing by using that is selecting every anchor that is the first
parent of it's child (which is all of them since they lie immediately under
a list item). The selector you want to be using is just first (a:first),
whic
This might work for Superfish but isn't it also a possibility by doing this
you could do the exact opposite of what you're trying to accomplish, as this
could also override any other third party CSS you're trying to use? While I
guess it's not technically incorrect, there's no reason to include
!im
Hm, that makes sense. So, I suppose I could do something like
jQuery.noConflict();
var doc = window.content.document;
jQuery("#id", doc);
Which would solve the issue that jQuery doesn't live in the HTML anymore
(and lives in the browser). But how would this work on .ajax functions? Do I
have
Hi,
I have the problem when go change de mask, i`m using maskedinput
http://digitalbush.com/projects/masked-input-plugin/
my code:
Jurídica
Física
$("#tip_j").click(function(){
$("#masked").val("");
$("#masked").mask("999.999.999/-99");
});
$("#tip_f").click(function(){
$("#mas
Hi guys
I have the problem when go change de mask, i`m using maskedinput
http://digitalbush.com/projects/masked-input-plugin/
my code:
Jurídica
Física
$("#tip_j").click(function(){
$("#masked").val("");
$("#masked").mask("999.999.999/-99");
});
$("#tip_f").click(function(){
$("#
hi,
i want create sort table in 3 tables byclass
the code:
$(".box table").tableSorter({
sortColumn: 'name',
sortClassAsc: 'header-asc',
sortClassDesc: 'header-desc',
highlightClass: 'h
7;.bloc-top').click(function(){
> > $(this).filter('.bloc-center').slideToggle('slow');
> > });
>
> well... first of all I'm not quite sure about the html Luciano posted.
> I supposed something like this:
>
> >
> > content top
&g
how i could do it`s commands?
On 12 maio, 22:35, darren <[EMAIL PROTECTED]> wrote:
> you could even use commas in your selector so that you aren't
> repeating your statements.
>
> On May 12, 5:51 pm, Luciano <[EMAIL PROTECTED]> wrote:
>
> > hdfsuahd it`s ok
hdfsuahd it`s ok ok..
i forgot space.."#box2. bloc-top"
On 12 maio, 20:35, Luciano <[EMAIL PROTECTED]> wrote:
> how i can access classes in my div?
> example:
>
> $("#box1.bloc-top").click(function () {
> $(".bloc-center").slideTo
how i can access classes in my div?
example:
$("#box1.bloc-top").click(function () {
$(".bloc-center").slideToggle("slow");
});
$("#box2.bloc-top").click(function () {
$(".bloc-center").slideToggle("slow");
});
$("#box3.bloc-top").click(function () {
$(".bloc-cente
I try do your example, but no make upper-case,
so i try:
$(this).val($(this).val().toUpperCase());
and got success without problems, onkeyup all upunts make this value for
upper-case...
thank`s
On Tue, May 6, 2008 at 5:47 PM, Karl Swedberg <[EMAIL PROTECTED]> wrote:
> Luciano,
&g
re for UNIQUE entities.
>
> besides that, this
>
> $('input #search')
>
>
> should be
>
> $('input#search')
>
>
>
> Hope this helps!
>
> alex
>
>
>
> On Tue, May 6, 2008 at 3:46 PM, Luciano <[EMAIL PROTECTED]> wrote:
>
> &
sorry, i do this it and return ERROR no function..
$('input#search').toUpperCase();
On Tue, May 6, 2008 at 4:10 PM, Luciano Mazzetto <[EMAIL PROTECTED]>
wrote:
> sure!, but i need do it ?
>
> $('input#search').toUpperCase(); // ???
>
>
>
I have a input = search and a form = form-search,
well i need create action keypress on input search i do this:
$(document).ready(function() {
$('input #search')
.keypress(function(){
$('#inf').fadeIn('normal');
hi, i tryed do it
http://www.malsup.com/jquery/form/#getting-started
but my form do submit normal, and not in ajax...
so no return callback function
somebody can help-me ?
thanks
code
$(document).ready(function() {
$('#myForm').ajaxForm(function() {
Hi,
I need loading http request inside my div content.
I do this it
$("#content").load("http://www.google.com.br";);
but i hadn't sucess
How i can load this page in my div ?
tks..
Hi,
I need loading http request inside my div content.
I do this it
$("#content").load("http://www.google.com.br";);
but not OK ??
How i can load this page in my div ?
tks..
--
att.
Luciano M.
www.m2t.com.br
I think what's going on is that you are trying to access a dom element
of the Iframe doc, and AFAIK you can't do that directly with jQuery
selectors. However I found a discussion where this is solved:
http://groups.google.com/group/jquery-en/browse_thread/thread/744ba7fdabd9066a/d060e3f85c3bdbd8
Rasmussen" <[EMAIL PROTECTED]> wrote:
> Hi Luciano,
>
> Not sure what you're telling me. I will fetch the rows with Perl in my
> backend and send it to a page. Will jqGridViewcould make Ajax calls when
> updating?
>
> > Actually you will need something in
Just to let you guys know, I've just updated the plugin. The functions
were renamed and the issue when a queued animation that has a wait
time set is stopped (there is a still an issue regarding that when
starting and stopping repeatedly, I'll keep on looking at it).
Thanks,
Luciano.
Hi,
Actually you will need something in the middle, that is, an exposed
page (PHP, ASP, whatever) that would act as a proxy of your postgres
database. That way, the jquery plugin will be able to access that page
when trying to create / edit / update rows.
Hope it helps!
Luciano.
On Nov 21, 6
jQuery's core queueing method does it only for the selected element.
But when you want to do it for different elements (first fade in #1,
then slide down #2, etc.), you need to do it by passing callbacks to
each animation.
This plugin does something similar to what there is already in jQuery,
but
Regarding the 7-8 issue, I've just noticed that. I'll be fixing it
today I guess =)
But the 8 moving when 3 or 4 is a bit odd, since the "animate" for
that element is not launched yet (well, at least it shouldn't be
launched =P).
Thanks Ethan!
On Nov 19, 10:30 pm, bigethan <[EMAIL PROTECTED]> wr
.. a bit
> esoteric.
> IMO, you should shorten the name of methods a bit, to make more jQuery-
> ish.
> For example: jQuery.fxQueues.clearQueue, I'd remove the 'Queue' part,
> as it is obvious what are you clearing.
> Very nice.
>
> Ariel Flesler
>
> O
(Sorry if I'm double posting)
Hi,
I created a new plugin that reimplements the queueing system, allowing
the possibility of having global queues for jquery's animations
(similar to what Scriptaculous has).
http://jquery.com/plugins/project/fxqueues
http://www.decodeuri.com/jqueryfxqueues/
New
bad english! :)
luciano
th scripts without collisions?
TIA, and sorry for the bad english :)
luciano a. ferrer
On 7/5/07, Rey Bango <[EMAIL PROTECTED]> wrote:
>
> Are you using jQuery, MooTools or both?
>
> Rey
only jquery... I have solved it!
changed the line
$("dd:not(:first)").hide();
to
$("dd:first").hide();
This is the right way?
luciano
> Luciano A. Fe
Hi!
I need to use mootools accordion, but just with 1 item...
so, it would be nice to have it closed when pages loads...
Do you have any idea about how to achieve this?
(I am stupid using javascript... :( )
TIA, and sorry for the bad english :)
luciano
53 matches
Mail list logo