[jQuery] Re: Moving from .get(xml file) to using .ajax

2009-03-03 Thread ryan.joyce...@googlemail.com
if the browser is caching the query, would appending a parameter containing a random number or some such to the end of the request stop that?

[jQuery] Re: jquery plugin not loading

2009-02-16 Thread ryan.joyce...@googlemail.com
quick and dirty method to see if the .JS file was being pulled in at all would be to stick an alert() in the plugin.js if that works i'd assume there is something wrong with the way the function is being called.

[jQuery] Re: Add Checkboxes in a table.

2009-01-22 Thread ryan.joyce...@googlemail.com
maybe try .append-ing stuff to the table? $('table#my_table').append( stuff to append goes here ) On Jan 22, 3:42 pm, Andy adharb...@gmail.com wrote: I need to be able to dynamically add a new rows to a table and add elements such as check boxes, plain text and hyperlinks.  I cannot find any

[jQuery] Re: Solution To Many Of Your CSS Nightmares!

2009-01-20 Thread ryan.joyce...@googlemail.com
--rendering problems of a widget, in my experience, could involve many, indeed EVERY attribute of every element in the widget. you declare your default stylesheet, then you declare your widget's sheet. if the widget is inheriting incorrectly from a parent element you've got a couple of ways

[jQuery] Re: Solution To Many Of Your CSS Nightmares!

2009-01-19 Thread ryan.joyce...@googlemail.com
surely declaring the css you want to take priority after your site's default stylesheet, this will solve the problem? On Jan 18, 10:59 pm, johny why johny...@gmail.com wrote: ricardo, you're right that styles undeclared in the widget-css will cascade from the site-css into the widget, even if

[jQuery] Re: Solution To Many Of Your CSS Nightmares!

2009-01-19 Thread ryan.joyce...@googlemail.com
but unless you've declared some of your default styles as !important, the widget *will* take precedence if it's called after the default CSS. the only issues i can see are relative vs. explicit pixel sizes - for ex. if you've declared pixel sizes for your fonts with some especially broad

[jQuery] Re: $(area) not working in IE (sorry if this is a repost)

2009-01-16 Thread ryan.joyce...@googlemail.com
I know... no Firebug in IE. Poo. maybe give firebug lite a go. it's a firebug library you can embed into a page and view through any browser you like. http://getfirebug.com/lite.html it's always useful for trying to hack out random IE bugs. On Jan 15, 5:00 am, James Van Dyke

[jQuery] Re: jQuery 1.3 Released

2009-01-15 Thread ryan.joyce...@googlemail.com
nice one, a 30% speed increase on selectors is impressive.