[jQuery] Re: How do I extract a part of received data

2009-09-21 Thread Rodrigo Sebastián Alfonso
e > > > > > $("div", xml.responseXML); > > > > Please do not tell me this is because this is for XML data only. I > > read Ajax request may return HTML data and will process it as well. > > In fact, I already use $get() (an AJAX calling function) that return > > HTML. > > > > On Sep 18, 8:07 am, lanxiazhi wrote: > > > > > this : > > > var elem = $('#section_news', data); > > > is not the right syntax. > -- Rodrigo Alfonso

[jQuery] Re: jQuery PDF Viewer?

2009-09-16 Thread Rodrigo Sebastián Alfonso
u just get the browser's default behavior. So it's a lot > of showbiz with all that boingy window for no result. I tried it in > Firefox and the window boinged open, but then I just got the usual > Firefox dialog asking if I wanted to download the PDF. > > Thanks anyway for the suggestion though. The plugin looks good > otherwise, I just wouldn't say that it supports PDF, really. > > -- Rodrigo Alfonso

[jQuery] Display background image in optgroup on IE

2009-09-14 Thread Rodrigo Sebastián Alfonso
Guys, I'm wondering if any of you might have some kind of "jquery related" hack in order to be able to display background images in IE (6,7,8) for the OPTGROUP element. I've been looking for a way to acomplish this everywhere with no luck. I'll appreciate any lea

[jQuery] Re: Need help with a custom selector to bind ajax callbacks

2009-07-23 Thread Rodrigo Tassinari
Anyone? On 20 jul, 12:34, Rodrigo Tassinari de Oliveira wrote: > Hello everyone, > > I'm stuck with an annoying problem in this webapp I'm developing. > > I've created a small code to be called automagically on every ajax > request, which shows a "loading.

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Does anyone have any ideas to help me with this? Thanks a lot in advance, Rodrigo.

[jQuery] Need help with a custom selector to bind ajax callbacks

2009-07-20 Thread Rodrigo Tassinari de Oliveira
Does anyone have any ideas to help me with this? Thanks a lot in advance, Rodrigo.

[jQuery] Re: jQuery 1.3.2 in IE5.5

2009-06-18 Thread Rodrigo Sebastián Alfonso
; > On Jun 18, 7:32 am, Rodrigo wrote: > > Hi everyone! > > > > I've been doing some research and I've found different opinions about > > the compatibility of jQuery with IE5.5. > > > > My problem is that I can't get anything to work (I'm

[jQuery] jQuery 1.3.2 in IE5.5

2009-06-18 Thread Rodrigo
1.3.2 (minified). I will appreciate any ideas! Thanks! Rodrigo

[jQuery] Re: Setting element type?

2009-05-22 Thread Rodrigo Matheus
h the type you want. Ex: > > $('').appendTo("form"); > > - Richard > > > On Thu, May 21, 2009 at 9:44 AM, Rodrigo Matheus wrote: > >> also need to know >> >> 2009/5/21 ash.finlay...@googlemail.com >> >> >>> Hi can

[jQuery] Re: Plugin Best practices?

2009-05-21 Thread Rodrigo Matheus
best >> practice in loading all of these files and how much does it slow down >> an app? Do you reference them from another file to keep the page code >> clean? Just a couple of questions to find out about . . . . >> >> Thanks, >> Rich > > > -- Atenciosamente, Rodrigo Matheus

[jQuery] input type

2009-05-21 Thread Rodrigo Matheus
Hi, You can return a text input for a password input? Example: $(this).attr('type','password'); Has another way that works? -- Atenciosamente, Rodrigo Matheus

[jQuery] Re: Setting element type?

2009-05-21 Thread Rodrigo Matheus
also need to know 2009/5/21 ash.finlay...@googlemail.com > > Hi can anyone tell me how to set the 'type' of an html form element > using jquery? > > is there something like? > $("element").type("password"); > > Many Thanks > Ash -- Atenciosamente, Rodrigo Matheus

[jQuery] Re: Whats going on with this?

2009-04-29 Thread Rodrigo Lizarraga
yea, it turns out the wordpress plugin cforms was messing it up, so i disabled it on that specific page. As for the menu in IE, yea, IE 8 does not support cufon -_-, which is a javascript font replacement script

[jQuery] Re: Whats going on with this?

2009-04-29 Thread Rodrigo Lizarraga
Any idea where/how?

[jQuery] Re: Toggle(fn, fn), need to click twice to re-open the content

2009-03-19 Thread Rodrigo
on the status > > of your elements. This means clicking on something else that modifies > > your elements will not affect the internal toggle count. I suggest, > > rather than using toggle, use a simple click event and do a condition > > check of your element and perform yo

[jQuery] Toggle(fn, fn), need to click twice to re-open the content

2009-03-19 Thread Rodrigo
Hi, I've an issue using .toggle({unction(){}, function(){}); It works fine if I toggle the element, however, if I click on it to open and then hide it through another element (a button), the next time I have to click twice to re-open the content. Example: $(".button").click(function() { $

[jQuery] Simultaneous or serial execution of commands within a function?

2009-02-12 Thread Rodrigo C.
A pretty basic question, if I have this construct: $('#img').hover( function() { $(this).parent().parent().siblings().stop().fadeTo('slow',0.3); $('.popdir').hide('fast'); $('.popdir', $(this).parent().parent()).show(500); } ) will

[jQuery] Re: working on C#

2008-12-18 Thread Rodrigo
t; > using master pages and user controls and other naming containers > (GridView, Wizard, etc) change the name and ID of the controls inside > them > > so if you have > > > > specified, then > > $("#Name1")  isn't going to work if that TextBox is insid

[jQuery] [validate] working on C#

2008-12-18 Thread Rodrigo
I'm working with C# and have some problems to integrate with jquery in order to validate forms. Anyone have a example page working with aspx and the events? sometimes need disable the validation but send the callback , someone knows a disable feature ? thanks

[jQuery] Re: How to gzip a javascript file | I am not able to find.

2008-10-19 Thread Rodrigo Paiva
You can gzip the response on the fly. You can use ob_* functions and gzcompress() to send the content gzipped. On Oct 19, 11:01 am, "Sridhar Kuppalli" <[EMAIL PROTECTED]> wrote: > Thanks man, > > Its really a good one, my request time for jquery library has been reduced > by 50%. > In the si

[jQuery] each() odd behavior

2008-09-04 Thread Rodrigo Paiva
Hello. I'm trying to make external links open in a new window but the each() seems a little strange. Am I missing something in the code below? Because "this" gets the "href" attribute of the element, instead of getting the current element itself. The strangest of it all is when I run this snippe

[jQuery] how to disable events on a iframe?

2007-10-12 Thread Rodrigo Moraes
Hey, Do you know a jQuery solution to disable events on an iframe? Basically, I want to display an iframe, but disallow all interactions (click on links, forms, etc) on it. The blockUI plugin seems to not work in this case... Any ideas? thanks, rodrigo moraes

[jQuery] jqMultiSelects suggestion

2007-09-22 Thread Rodrigo Moraes
t_right", "#options_right"); $("#select_right").multiSelect("#select_left", "#options_left"); Don't you think it is less restrictive? -- rodrigo

[jQuery] Re: jQuery UI already released?

2007-09-16 Thread Rodrigo Moraes
forward to it too. -- rodrigo

[jQuery] Re: Tablesorter 2.0

2007-09-16 Thread Rodrigo Moraes
tbody rows with server-side data. Of course, I'll keep an eye on the community hacks to see if something similar appears. Hey, thanks for the plugin. It is super "simple but slick". Lovely stuff. :) -- rodrigo moraes

[jQuery] [OT] Importing jQuery mailing list archives

2007-07-17 Thread Rodrigo Moraes
nvolved is considering to migrate to Google Groups and I couldn't find an "official" way to import archives from Mailman. There are topics about this in Google Groups discussion group, but no solution is given. And I knew that jQuery-en moved including its archives, so... could you give me a clue? thanks, rodrigo moraes

[jQuery] Re: Tooltip Bug (IE7)

2007-06-29 Thread Rodrigo Castilho Galvão Ferreira
Jörn, Thanks, very good script and very fast solution... perfect plugin now :) -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com On 6/29/07, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: Rodrigo Castilho Galvão Ferreira wrote: > > The other problem in IE7 is: > &

[jQuery] Tooltip Bug (IE7)

2007-06-29 Thread Rodrigo Castilho Galvão Ferreira
The other problem in IE7 is: When we try to select an item of combobox () is removed focus of the item. Verify in: http://tinyurl.com/2gox5r Thanks, -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com

[jQuery] Re: Tooltip Bug

2007-06-28 Thread Rodrigo Castilho Galvão Ferreira
Problem continue in IE6 (being behind tooltip in tags select) $('[EMAIL PROTECTED]').Tooltip({ delay: 500, showURL: false }).bgiframe(); New Bug: Problem too in IE7 (selecting tags select disabled focus) -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com

[jQuery] Tooltip Bug

2007-06-28 Thread Rodrigo Castilho Galvão Ferreira
Hi JQueries, Problem in IE Plugin Tooltip (Joern Zaefferer) Tooltip is for backwards of SELECT browser IE or same in the browser IE7 it does not leave to select combo correctly. Which the solution? Thanks, -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com

[jQuery] Re: How to point Thickbox3 links in an iframe to the iframe's container

2007-06-04 Thread Rodrigo Moraes
using window.top.my_function(), to trigger a function in the main window. In ThickBox 3, you can then call tb_remove() to close the thickbox right before or after the action is executed. -- rodrigo

[jQuery] Re: jQuery css properties

2007-06-02 Thread Rodrigo Moraes
On 6/2/07, SamCKayak wrote: Is there a list somewhere of all the revised property names? I need border-bottom in particular. I would expect it converted to camel caps (e.g., borderBottom), as in js and other libs, but I'm not sure. -- rodrigo

[jQuery] Re: Simple new plugin seeking feedback

2007-06-02 Thread Rodrigo Moraes
On 6/2/07, boermans wrote: My first jQuery plugin is finally operational! It adjusts the line-height (CSS) of text in proportion to container width. Demo here: http://www.ollicle.com/eg/jquery/autolineheight/ Sweet! I have an use for it. Thanks! -- rodrigo

[jQuery] Re: jQuery'zed Ext.Template

2007-05-29 Thread Rodrigo Moraes
plugin as jQuery'zed as I can, so any help would be appreciated. Here's the updated code: http://dev.tipos.org/browser/javascript/jquery/template/jquery.template.js?format=txt thanks, -- rodrigo

[jQuery] Re: jQuery'zed Ext.Template

2007-05-29 Thread Rodrigo Moraes
7;s already used by other plugins / core to extend a class in such way, to avoiding including the function and instead use an existing solution. -- rodrigo [1] http://localhost/ext-1.0.1/docs/output/Ext.html#extend [2] http://developer.yahoo.com/yui/docs/YAHOO.html

[jQuery] Re: jQuery'zed Ext.Template

2007-05-29 Thread Rodrigo Moraes
lot when I moved to jQuery. And so I adapted/simplified it to use on plugins. -- rodrigo

[jQuery] jQuery'zed Ext.Template

2007-05-29 Thread Rodrigo Moraes
or any jQuery plugin/utility. Something like the extend() function in YUI or Ext. Is there any? thanks, rodrigo [1] http://extjs.com/deploy/ext/docs/output/Ext.Template.html [2] http://extjs.com/deploy/ext/docs/output/Ext.MasterTemplate.html --- Usage (based on Ext

[jQuery] Re: Thickbox Reloaded strange problem

2007-05-25 Thread Rodrigo Moraes
k opens the thickbox. Then I add another block to the page and it also has the same thickbox triger, etc. I don't need a lot of repeated forms in the dom, just one, and them I change their values onShow. thanks again for the explanation and the great Thickbox Reloaded, -- rodrigo

[jQuery] Re: Thickbox Reloaded strange problem

2007-05-25 Thread Rodrigo Moraes
domain/port, you won't be able because if it's on the same domain it will guess that you want ajax (and this is not always true). I hacked it again to force an iframe even when it's on the same domain, if a config is set. Thanks again. If you think it is worth, I'll fill an issue to report these. -- rodrigo

[jQuery] Thickbox Reloaded strange problem

2007-05-25 Thread Rodrigo Moraes
ent will be set normally. 3. Repeat step 1. The new link will open a Thickbox which is empty. Any clues why this is happening? thanks, rodrigo

[jQuery] Re: Highlight problem in IE6

2007-05-23 Thread Rodrigo Moraes
On 5/23/07, Rodrigo Moraes wrote: The problem: a simple highlight in IE6 ends with the highlight color, instead of the element original color. See by yourself: sorry to not look for it before. there's a bug filled about this already: http://dev.jquery.com/ticket/1014 in the mean time,

[jQuery] Highlight problem in IE6

2007-05-23 Thread Rodrigo Moraes
? -- rodrigo

[jQuery] two doubts: Highlight() and sortables

2007-05-22 Thread Rodrigo Moraes
Hi everybody, I'm Rodrigo from Brazil and I'm new to jQuery (started 2 days ago). I'm pretty happy with what I achieved so far. :) I have two IE problems that are difficult to debug and maybe you had similar experience of what may cause them. First, an example: http://dev.tipo

[jQuery] Re: Free Daily Horoscope

2007-05-21 Thread Rodrigo Castilho Galvão Ferreira
SPAM On 5/21/07, jack nicole <[EMAIL PROTECTED]> wrote: Free Daily Horoscope Download Free Daily Horoscope Toolbar! - http://offr.biz/HLFDH276377ZTPYJEK -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com www.rodrigocastilho.com.br www.rodcast.com.br www.rod.cast.nom.br

[jQuery] Re: random images

2007-05-12 Thread Rodrigo Castilho Galvão Ferreira
Initiating in 1 at "totalNum" for example: var rndNum = (Math.floor(Math.random() * totalNum)+1); -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com On 5/12/07, Glen Lipka <[EMAIL PROTECTED]> wrote: I have pick random images for a background like this:

[jQuery] New Plugin: Best Practices and Guideline

2007-05-09 Thread Rodrigo Castilho Galvão Ferreira
Which the standard so that it can publish a new JQuery Plugin? Exists Guideline for publication? Thanks, -- Rodrigo Castilho Galvão Ferreira

[jQuery] Re: ANN: jQuery-Powered Sites: The List Continues to Grow

2007-05-04 Thread Rodrigo Castilho Galvão Ferreira
there it is. Have another site in client >>> review that uses jQuery for some other things... >>> >>> Kevin >>> >>> >> -- >> BrightLight Development, LLC. >> 954-775- (o) >> 954-600-2726 (c) >> [EMAIL PROTECTED] >> http://www.iambright.com >> > > > > -- BrightLight Development, LLC. 954-775- (o) 954-600-2726 (c) [EMAIL PROTECTED] http://www.iambright.com -- Rodrigo Castilho Galvão Ferreira www.rodrigocastilho.com www.rodrigocastilho.com.br www.rodcast.com.br www.rod.cast.nom.br