[jQuery] Re: [ANNOUNCE] jFlip plugin

2008-06-11 Thread Renato Formato
Hi Andy, I understand your point but the plugin captures mouse events only over the flipping area, so, even moving it to the center won't change its behavior. If the plugin captures mouse events on the document, that could be possible, but the turning page would be drawn always only inside the

[jQuery] Re: [ANNOUNCE] jFlip plugin

2008-06-04 Thread Renato Formato
been great to code it. A nice bonus to the plugin is that the modified version of excanvas that jFlip uses supports patterns too. Renato Formato

[jQuery] [ANNOUNCE] jFlip plugin

2008-05-30 Thread Renato Formato
/The-jFlip-plugin Renato Formato

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-09 Thread Renato Formato
fambizzari ha scritto: Ok... here we go... I got it to work with this... $(table tbody) .mouseover(function(e) { $(e.target).parents('tr').addClass('over'); }) .mouseout(function(e) {

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-08 Thread Renato Formato
fambizzari ha scritto: George, I have no idea what you are talking about! Can you explain by means of code? I posted an example in the first answer to your question :) Didn't you read it? Ciao Renato

[jQuery] Re: PROBLEM: Adding hover to table rows on large tables

2007-11-06 Thread Renato Formato
[EMAIL PROTECTED] ha scritto: The following code works fine on small tables: $(table tbody tr).mouseover(function(){$(this).addClass(over);}).mouseout(function(){$(this).removeClass(over);}); But on tables with 5,000-10,000 rows, it throws the A script on this page may be busy, or it

[jQuery] Re: Performance from 1.1.2 to 1.1.4

2007-08-28 Thread Renato Formato
oscar esp ha scritto: Hi Jeffry , I am agree about VS. When I execute without VS I get better performance obiuslly however 1.1.2/1.1.3 is faster thatn 1.1.4: -1.1.4 : 2 seconds (from select an item in client after the second combo is load in client) -1.1.2 1.1.3: less thant 1 second (from

[jQuery] Re: How to find elements with an exact text content?

2007-07-04 Thread Renato Formato
Nicolas Hoizey ha scritto: Hi, I'm currently using :contains() to find elements that contain some string: http://docs.jquery.com/DOM/Traversing#contains.28_str_.29 I would like now to find only elements that have a text content exactly equal to the string I chose. I didn't find any

[jQuery] Re: 1.1.3 speed regression for selection of tags

2007-07-02 Thread Renato Formato
Karl Rudd ha scritto: Just been going through some of my current work and seeing what improvements come with jQuery 1.1.3. Unfortunately it looks like there's a bit of a regression in terms of speed for Firefox (2.0.0.4). So far I've only looked at the speed decrease when selecting 'input'

[jQuery] Re: Odd behavior with events and loaded content

2007-06-30 Thread Renato Formato
[EMAIL PROTECTED] ha scritto: I have a page (edit.asp) which uses the .load() to load another page into a div. Inside this loaded page (students.asp) is a select box (id=classavailable) and a link (id=ajaxAdd). I am trying to run an event after the user selects a value in the select box and

[jQuery] Re: how do i wait for the images to be fully downloaded?

2007-06-14 Thread Renato Formato
GianCarlo Mingati ha scritto: http://www.gcmingati.net/wordpress/wp-content/lab/jquery/imagestrip/imageslide-plugin.html Hi all. It works now, thank you very much, but why couldn't I put only one istance per page? Try yourself if you got the time. I'll work on that too. Grazie! Ciao

[jQuery] Re: jquery is slow at execution

2007-06-10 Thread Renato Formato
mathmax ha scritto: When I discovered jquery, I wanted immediately to remake this script to see how shorter the script could be. I was however quickly stopped by the performances... Here, you can see the http://fra.orkos.com/tests/pricelist/ same page but the research script has been

[jQuery] Re: $.post not load why?

2007-06-04 Thread Renato Formato
Massimiliano Marini ha scritto: I want to load news in my html page from a php script from another site. I have included this script in my html page, but not work, maybe I'm wrong using $.post? $(document).ready(function(){ $.post(http://www.othersite.it/news.php;,

[jQuery] Re: Plugin to link words/phrases

2007-06-04 Thread Renato Formato
Michael Edmondson ha scritto: I am working on writing a plugin that, given a list of words/phrases, will link text. That sounds so ... less than spectacular. The concept is similar to those in-text ads, except without the popups/bubbles. (Even less spectacular-sounding.) I was wondering if

[jQuery] ANNOUNCE: SearchHighlight plugin

2007-05-22 Thread Renato Formato
Hi all, I just released my second jQuery plugin, SearchHighlight, a plugin to highlight searched words in your search result pages. Here are the main features: 1) It works using search engine referrers or explicitly declared words 2) supports multicolor highlight 3) exact and partial matches 4)

[jQuery] Re: Help Test jQuery 1.1.3

2007-05-21 Thread Renato Formato
Jean-Francois Hovinne ha scritto: Well, I've replied to Brandon (by email) that his fix didn't work: the mergenum attr simply becomes $mergenum in the resultant HTML code. Using other variable names (such as 'mytest') doesn't fix the problem. Using the code you propose (this.mergeNum = null;)

[jQuery] Re: Text Highlighting from Search

2007-05-15 Thread Renato Formato
Wow, that looks robust. Definetely let me know when it's released. So I assume, I would remove the search definitions and add something like: [/^http:\/\/(www\.)?commadot\./i, /s=([^]+)/i], I get a little lost on the syntax there. It might be worth while in the plugin to make a simple api

[jQuery] Re: Text Highlighting from Search

2007-05-14 Thread Renato Formato
Glen Lipka ha scritto: I have a search which yields a URL like this: (searching for [jets daniel]) http://www.commadot.com/index.php?s=jets+danielsearchsubmit=Search http://www.commadot.com/index.php?s=jets+danielsearchsubmit=Search http://www.commadot.com/index.php?s=Jetssearchsubmit=Search

[jQuery] Re: callback in a plugin

2007-05-14 Thread Renato Formato
Alexandre Plennevaux ha scritto: i would like to add this to the jqUploader plugin, so that i could do something like: function pleaseDoTheseThings (params){ $(#dothis).show(); } $(input#example1).jqUploader({ background: FF9900, barColor: FFDD00,