[jQuery] Re: Hovers that appear from top

2008-09-01 Thread Feed
Take a look at: http://ui.jquery.com and http://plugins.jquery.com/project/Plugins/category/43 But I must say that, unfortunately, extJS is much better when it comes to UI elements On Sep 1, 10:10 am, Marcin <[EMAIL PROTECTED]> wrote: > Hi all, > >   I am looking for similar widget that I sow

[jQuery] Question about the new jQuery website

2008-09-01 Thread Feed
Hello all, About the new jQuery website, you noticed that it has 3 blue links: - Lightweight Footprint - CSS3 Compliant - Cross-browser When you hover, it displays a box that stays above the link. I was looking into the code when I found this: //cta tooltips if($.browser.msie){ $('div.

[jQuery] Re: Problem fiding a certain text inside a table

2008-03-28 Thread Feed
this: > > $(this).find("td:contains('*')").each(function(){ > $(this).text().replace(/\*/g, "*"); > > }); > > The above code is untested and may not work, but you get the picture. > > On Mar 26, 3:00 pm, Feed <[EMAIL PROTECTED]> wrote: >

[jQuery] Problem fiding a certain text inside a table

2008-03-26 Thread Feed
Hello all, I'm having a hard time trying to make a script. This is the whole picture: - I have lots of tables in the same page - Each of those tables has a button that, once pressed, find and highlight all '*' characters inside the table What I'm thinking about doing is: Find all TDs that cont

[jQuery] Re: Sliding vertically a floated element depending on scrollbar

2008-02-13 Thread Feed
Hello Andrea, Thanks for your help! Your approach really does work, I'll try to tailor it to my needs. Thanks! On Feb 13, 12:01 pm, andrea varnier <[EMAIL PROTECTED]> wrote: > On 13 Feb, 15:31, Feed <[EMAIL PROTECTED]> wrote: > > > Hi all, > > > I thin

[jQuery] Sliding vertically a floated element depending on scrollbar

2008-02-13 Thread Feed
Hi all, I think I've looked all plugins available on jquery.com and haven't found what I need. As I don't have enough experience to write my own plugin, I'd like to know if there a already a plugin to make it easier to accomplish this effect: http://www.webstudiohelp.net/index.html http://www.j

[jQuery] Re: jQuery.SerialScroll

2008-02-12 Thread Feed
Awesome Ariel, thanks for yet another great plugin. I have a request though: can you add an option to make it "circular" (like jCarousel)?

[jQuery] Re: Keeping variables across ajax pages

2008-02-01 Thread Feed
e > > var params = new Array() > params["lang"] = "en"; > params["source"] = "somewhere there"; > // etc... > > $(document).ready(function(){ > //other DOM-ready stuff...}); > > > Now you can use `x = params['source&#

[jQuery] Keeping variables across ajax pages

2008-01-30 Thread Feed
Hello all, I'd like to know what do you do keep variables across ajax pages. I've been doing something that I consider a "hack" and very noobish (I'm not a programmer): I create an invisible DIV in the main page and sub-divs with the variables, then when I need the values I use attr() to retrie

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
; Just an Idea: try out PNGs or Gifs. That maybe help in the > smoothiness. > > Yea, forgett Flash. It would not be indexable for searchengines. > > cheers > tl > > On Jan 22, 6:16 pm, Feed <[EMAIL PROTECTED]> wrote: > > > Thanks for the feedback Tom... >

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
ing, yeah, that would be a better choice "performancewise"... but I didn't have time to learn Flash and the maintenance of a flash-based application is usually more difficult (i know I could use XML to feed flash but... we don't have a developer capable of doing this right now). The images are

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
<[EMAIL PROTECTED]> wrote: > define "doesn't work as smooth". > > It's pretty smooth on my FF > > cheers > tom > > On Jan 22, 3:07 pm, Feed <[EMAIL PROTECTED]> wrote: > > > Anyone, please? > > > On Jan 21, 3:41 pm, Feed <

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-22 Thread Feed
Anyone, please? On Jan 21, 3:41 pm, Feed <[EMAIL PROTECTED]> wrote: > Really, really sorry I sent the wrong link! > > This is the right one: > > http://www.mz-ir.com/mzdesign/portfolio/portfolio.asp

[jQuery] Poor Firefox performance (animations) - with link

2008-01-21 Thread Feed
Hello all, For the past weeks I've been working on a project which I think now is ready to show. Bear in mind that I'm no programmer whatsoever... I "learnt" ASP and jQuery for this project and I'm sure this project could be done much more effectively than I did. From what I've tested it seems t

[jQuery] Re: Poor Firefox performance (animations) - with link

2008-01-21 Thread Feed
Really, really sorry I sent the wrong link! This is the right one: http://www.mz-ir.com/mzdesign/portfolio/portfolio.asp

[jQuery] Re: jQModal ajax requests and cache issue

2007-12-14 Thread Feed
Try adding "cache: false" to your ajax call... like this (I have no idea if it will work): function pop(link) { $('#ex2').jqm({ $.ajax({ type: "GET", url: link, cache: false }); }).jqmShow(); }

[jQuery] Re: preloading images with jquery in IE

2007-12-14 Thread Feed
I didn't quite understand your solution, ekallevig. Can you explain it again, please? I also tried Jannik's solution but it didn't work... it gives me an error saying that $img has no properties. On Dec 14, 1:41 pm, ekallevig <[EMAIL PROTECTED]> wrote: > I figured it out last night after I poste

[jQuery] Re: Ann: Flot 0.1 released

2007-12-04 Thread Feed
AWESOME work, congratulations and thanks for sharing. On Dec 4, 9:04 am, Ole Laursen <[EMAIL PROTECTED]> wrote: > Hi! > > I've just released Flot 0.1, a brand-new plot plugin for jQuery which > focuses on simple usage, attractive looks and interactive features > like zooming. It's like plotr and

[jQuery] Re: getScript making multiple calls

2007-12-04 Thread Feed
clicked, can someone explain the logic to me please? On Dec 3, 5:36 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed schrieb:> What am I doing wrong and how can I run the script on the part > of the > > site which has been loaded by ajax? > > This should answer your > question:http://docs.jquery.com/Frequently_Asked_Questions#Why_do_my_events_st... > > Jörn

[jQuery] getScript making multiple calls

2007-12-03 Thread Feed
Hello all, I think I not using getScript properly and would appreciate very much if you could help. I have a page which is load via ajax GET and I need the script to run again each time new data is loaded (when the user clicks a button). Something like this (this file is called scripts.js) $(".

[jQuery] Re: Ajax Form and latin characters

2007-11-21 Thread Feed
I was able to fix it adding this line to the ASP which submits the e- mail: Response.CodePage = 65001 Don't know if this is the correct method but, well, it's working for now. Thanks! On Nov 21, 3:51 pm, Bil Corry <[EMAIL PROTECTED]> wrote: > Feed wrote on 11/21/2007 12:23 P

[jQuery] Ajax Form and latin characters

2007-11-21 Thread Feed
Hello all, I'm having a really hard time making my AJAX form submit an e-mail correctly. The form sends the data to an ASP page which then submits an e-mail through CDONTS. The problem is: the latin characters are scrambled in the e-mail received by the final user. Eg.: the word "cães" is receiv

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-09-11 Thread Feed
Just bumping this thread to see if anyone has any idea about this bug in IE6. On Aug 29, 6:52 pm, Feed <[EMAIL PROTECTED]> wrote: > Jörn, the problem is simple: > > using .parent().parent() in "errorPlacement" breaks the code in IE6. > > For example, imagine

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-29 Thread Feed
x27;) ); } In FIREFOX the TR containing the error field is painted black. In IE6 the TD containing the error field is painted black, but it should paint the TR, not the TD. Can you please try to reproduce this? On Aug 29, 4:36 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed sc

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-29 Thread Feed
> Jörn Zaefferer schrieb: > > > Feed schrieb: > >> Ok, there seem to be a bug somewhere look: > >> [...] > >> Conclusion: IE doesn't seem to understand the second .parent() it > >> doesn't select the TR. What can I do to fix this? > >

[jQuery] Re: DIV clipping or autofit question

2007-08-28 Thread Feed
Yes, Firefox does this. I'm not sure if it's a bug or a feature, though. I don't think Firefox, which is known for it's good standards compliance, would suffer from such a stupid bug. Or maybe I'm wrong. :) On Aug 28, 5:27 pm, seedy <[EMAIL PROTECTED]> wrote: > Is the text you are trying to displ

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Feed
Yes, IE selects the TD instead of TR. Just like if I were using just ONE parent(). On Aug 27, 4:51 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed schrieb:> Ok, there seem to be a bug somewhere look: > > [...] > > Conclusion: IE doesn't seem to understan

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Feed
">td:last").css("backgroundColor","#FF"); }); On Aug 27, 10:19 am, Feed <[EMAIL PROTECTED]> wrote: > Ok, there seem to be a bug somewhere look: > > Case 1 > > Code: > > errorPlacement: function(error, element) { > error.appendTo(

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-27 Thread Feed
E: the TD containing the error field is painted black (WRONG) !! -- Conclusion: IE doesn't seem to understand the second .parent() it doesn't select the TR. What can I do to fix this? On Aug 24, 7:13 pm, Feed <[EMAIL PROTECTED]> wrote: > Jörn, > > Since it's not worki

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-24 Thread Feed
k? Maybe a bug somewhere? It's strange that is only works in Firefox. On Aug 24, 4:52 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed schrieb:> What I need is this: > > > [IMG]http://i117.photobucket.com/albums/o71/feed_turbo/Misc/ > > jquery_validation.gif[/IMG] &g

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-24 Thread Feed
Whoops too soon to celebrate. It worked only in Firefox 2 but NOT on IE 6 (Windows XP). I'll try to fiddle with the code and see if I can make it work in IE. On Aug 24, 4:58 pm, Feed <[EMAIL PROTECTED]> wrote: > Yes! Jörn, thank you very much for your amazingly quick repl

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-24 Thread Feed
Yes! Jörn, thank you very much for your amazingly quick reply, it worked :) And sorry for taking your time with this noob question. On Aug 24, 4:52 pm, Jörn Zaefferer <[EMAIL PROTECTED]> wrote: > Feed schrieb:> What I need is this: > > > [IMG]http://i117.photobucket.com/

[jQuery] Re: Validation by Jörn Zaefferer - errorPla cement confusion

2007-08-24 Thread Feed
Sorry, I thought HTML were allowed the image representing what I need to accomplish is here: http://i117.photobucket.com/albums/o71/feed_turbo/Misc/jquery_validation.gif

[jQuery] Validation by Jörn Zaefferer - errorPlaceme nt confusion

2007-08-24 Thread Feed
Hello all, I'm using some jQuery plugins in my project, some of them are: - "Validation" plugin by Jörn Zaefferer (http://jquery.com/plugins/ project/validate) - "Form" plugin by Mike Alsup (http://jquery.com/plugins/project/form) - "Focus Fields" plugin by Sam (http://jquery.com/plugins/project

[jQuery] Printing pages manipulated by jQuery

2007-05-26 Thread Feed
Hello all, I've used jQuery to manipulate, stripe and add hover effect to all tables in my website (dozens of tables). There's a print button in my website and I didn't remember to test it until now. OMG, all the striping is gone. I'm not a programming guru, in fact I'm a designer but I have to d

[jQuery] Re: Interacting with TR an TD

2007-04-28 Thread Feed
#x27;s-must-be-empty requirement; mark all the TR's with a > > target class then sweep through the TD's and get rid of the > > target class if you find a td that is not > > empty. Play around a bit and see what else you can come up with. > > > $(document).re

[jQuery] Re: Interacting with TR an TD

2007-04-27 Thread Feed
tion() { > var $this = $(this); > if ($this.html() !== ' ') { > $this.parent().removeClass('allEmptyTds'); // and sweep > } > }); > > }); > > On 4/27/07, Feed <[EMAIL PROTECTED]> wrote: > > >

[jQuery] Re: Interacting with TR an TD

2007-04-27 Thread Feed
27;).addClass('allEmptyTds');// mark > $('td').each(function() { > var $this = $(this); > if ($this.html() !== ' ') { > $this.parent().removeClass('allEmptyTds'); // and sweep > } > }); > > }); > > On 4/

[jQuery] Re: Interacting with TR an TD

2007-04-27 Thread Feed
Feed wrote: > Hello all, I'm getting used to the excellent jQuery library and I need > some help of more experienced programmers. I have this simple table: > > > > content > conte

[jQuery] Interacting with TR an TD

2007-04-27 Thread Feed
Hello all, I'm getting used to the excellent jQuery library and I need some help of more experienced programmers. I have this simple table: content content content