[jQuery] Re: Parsing an external RSS feed

2009-02-11 Thread mmiller
You can also feed off Google's solution either as they wrap it or raw with a JSONP approach: http://code.google.com/apis/ajaxfeeds/documentation/#fonje On Feb 11, 2:58 pm, kgosser wrote: > Hey all, > > I've done some digging for a jQuery RSS feed plugin. Some good ones > out there. > jFeed:http:

[jQuery] Re: Can I use DWR and jQuery together?

2008-05-15 Thread mmiller
Thanks for weighing in on that, Joe. I had always assumed the conflict. Now I know better. Mark

[jQuery] Re: Can I use DWR and jQuery together?

2008-05-13 Thread mmiller
Sure. If you use the DWR utils.js you will have a collision over the use of the $ variable. But jQuery's noConflict option can get you past this. Additionally, I find that jQuery basically replaces the DWR utils for DOM work. On May 13, 9:01 am, jmDesktop <[EMAIL PROTECTED]> wrote: > Kind of new

[jQuery] Re: jQuery TShirt

2008-05-09 Thread mmiller
$("life").get()[0]; On May 9, 2:37 pm, Fontzter <[EMAIL PROTECTED]> wrote: > $("complicatedCode").hide();

[jQuery] Re: Best way to do Lightbox-like modal windows?

2008-05-07 Thread mmiller
blockUI - http://www.malsup.com/jquery/block/ You wanted simple. On May 7, 3:36 pm, Kyrre Nygård <[EMAIL PROTECTED]> wrote: > Hello! > > What's the best way to do a Lightbox-like modal windows? jqModal? > Facebox? Thickbox? There are so many options out there, so many of > them look so bloated a

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-30 Thread mmiller
Final fix for me as follows: jqModal.js (r9) line 55 WAS: var s=0,hash={},ma=[],ie6=$.browser.msie && typeof XMLHttpRequest == 'function', jqModal.js (r9) line 55 FIX: var s=0,hash={},ma=[],ie6=$.browser.msie && ($.browser.version == "6.0"), Mark On Jul 27,

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-27 Thread mmiller
Is it too much for me to say that I love you guys? Much appreciated. Mark On Jul 27, 9:35 am, Wizzud <[EMAIL PROTECTED]> wrote: > r9 and r10 use exactly the same test for IE6 detection. > Search for the current code > > ie6=function' > > and replace with the (suggested) modification > > ie6

[jQuery] Re: 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread mmiller
intranet site and i had no bumps upgrading to jQuery 1.1.3 > > --David > > On Jul 26, 10:01 pm, mmiller <[EMAIL PROTECTED]> wrote: > > > I if download and host the jqModal public example (and associated > > resources) on a local webserver and simply change the jQ

[jQuery] 1.1.3.1 breaks jqModal in IE6

2007-07-26 Thread mmiller
I if download and host the jqModal public example (and associated resources) on a local webserver and simply change the jQuery to 1.1.3.1, jqModal stops working in IE6. The overlay is pushed to a thin box at the bottom of the page and any modal like behavior is lost. My workaround is to roll back