[jQuery] Re: jQuery UI v1.5 Officially Released

2008-06-11 Thread Adam Greene
Fantastic work folks! You are going to see your work popping up all over the web here pretty soon I think. Adam -- SweetSpot.dm -- Diabetes Wellness for the Family http://www.SweetSpot.dm http://blog.SweetSpot.dm On Jun 9, 5:04 pm, Richard D. Worth [EMAIL PROTECTED] wrote: A quick update.

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

2008-05-08 Thread Adam Greene
another favorite of mine is: http://famspam.com/facebox/ though the Jquery UI stuff is looking pretty darn good!! adam -- Adam Greene SweetSpot.dm -- Diabetes Wellness for the Family http://www.SweetSpot.dm http://blog.SweetSpot.dm On May 8, 2:37 am, Kyrre Nygård [EMAIL PROTECTED] wrote: Err

[jQuery] Re: requesting and sending JSON in a ruby on rails app

2008-05-08 Thread Adam Greene
respond_to do |format| format.json{ render :json = @json} format.html{ render :nothing = true, :status = unprocessable_entity } end good luck! Adam -- Adam Greene SweetSpot.dm -- Diabetes Wellness for the Family http://www.SweetSpot.dm http://blog.SweetSpot.dm On May 7, 9:32 am, Michael Geary [EMAIL

[jQuery] Re: MSIE 7.0 and slide() function...

2007-12-24 Thread Adam Greene
Hi Andrea, I found that IE is really susceptible to displaying odd behavior based off of the css properties of the element you are toggling. I don't have a sure-fire solution, but there are a few things you can try: 1) make sure the element you are toggling has no other css properties 2) make

[jQuery] Re: jQuery.ajax POST is getting a 411 error.

2007-11-28 Thread Adam Greene
hey guys, do you think this should be posted as a bug? The method jQuery.get(...), within the jquery library (1.2.1) sometimes sets data to null. I've only noticed the behavior in firefox with nginx as the server (it boots that request right quick!). Thanks, Adam On Nov 13, 10:25 am, [EMAIL

[jQuery] Re: Interface Plugin - Pulsate and Bounce Newline Problems

2007-06-29 Thread Adam Greene
hi Nathan, I ran into the same issue as well. The jQuery.fx method is setting the effected element to display:block, and that is the root of your troubles. I'm not an expert in css, but for my jQuery pulsate call on a span, I added this to its style: display:inline !important; which overrides