[jQuery] Re: jQuery barcode

2009-04-30 Thread apaella
thanks! On 30 Apr, 11:54, Richard W willis...@gmail.com wrote: 1: create a html demo document 2: check it in the repository 3: change the mimetype of the html file using svn prop set (eghttp://svnbook.red-bean.com/en/1.0/re23.html) so that you can view the html file through subversion 4:

[jQuery] [ANN] jQuery barcode

2009-04-29 Thread apaella
Hi all, I releades a new plugin for jquery named jQuery Barcode. http://code.google.com/p/jquery-barcode/ Works with Opera, Firefox3, IE8, Prism, Gecko-based browsers Could someone review it? Thanks!

[jQuery] Re: jQuery barcode

2009-04-29 Thread apaella
Yes, but I'm not able to embed a script into the googlecode wiki... there is a way to host a working example into it? thanks! On 29 Apr, 17:12, rigo conven...@gmail.com wrote: Is there any example web page?

[jQuery] Re: How to display an ajax loading icon when page loading?

2008-10-03 Thread apaella
body div id=mask style=padding-top:200px;text- align:center;position:absolute;top:0;left:0;background-color:white;z- index: 100;width:100%;height:900px;display:block img src=/images/window_load.gif / /div ... $(document).ready(function(){ $('#mask').hide(); }); On 3 Ott, 11:53, ngocvu

[jQuery] Re: Tablesorter Plugin: Leave one column untouched

2008-07-25 Thread apaella
$(#myTable).tablesorter({ headers: { 1: {sorter: false }} }); $(#myTable).bind(sortEnd,function() { $(#myTable tbody tr).each(function(index, item){ $(td:first, $(item)).html(index+1);

[jQuery] Re: How to select all tag with certain class

2008-07-25 Thread apaella
$(li.highlight-with-red) wouldn't wors?

[jQuery] trigger mouseover when hoverIntent active

2008-07-22 Thread apaella
Hi *, how can I trigger a mouseover event where hoverIntent is active? Firefox firebug console simply ignore my $('#kwick_flight').mouseover(); Tkz!

[jQuery] $().ready targetting a IFRAME pdf document

2008-04-15 Thread apaella
HI *, is there a way to know when a pdf embedded document is loaded? I've tried the following solution with no successfully results iframe id=stampa src=/foo.pdf /iframe script language=javascript type=text/javascript var stampa = document.getElementById('stampa');