Ok, I'm pleased to say I have updated the plugin and we are now at 0.3

This brings a whole bunch of tweaks but mainly it (hopefully) fixes
the IE issues that people where having.

Ta,
Andy.




On 9 Oct, 08:56, "R. Rajesh Jeba Anbiah" <[EMAIL PROTECTED]>
wrote:
> On Oct 8, 3:42 pm, Andy Kent <[EMAIL PROTECTED]> wrote:
>    <snip>> Yep, absolutely. If you have any ideas on how we could test a 
> browsers
> > support for a selector without maintaining a hard coded list then I
> > would love to hear them.
>
>    <snip>
>
> $(document).ready(function () {
> $('body').append(
> '<div id="r_csstest">   \
> <style type="text/css"> \
> div#r_css{      \
>     width: 0px; \}               \
>
> div[id="r_css"]{\
>     height: 0px;\}               \
>
> div#r_css:nth-child(1){\
>     position: fixed;    \}   \
>
> </style>\
> <div id="r_css">    \
>  <div id="r_cssc">  \
>  </div>             \
> </div>              \
> </div>'
> );
> var bc_selectors = {
>     css1: 'div#r_css',
>     css2: 'div[id="r_css"]',
>     css3: 'div#r_css:nth-child(1)'};
>
> var bc = {
>     css1: ($(bc_selectors.css1).css('width') == '0px'),
>     css2: ($(bc_selectors.css2).css('height')=='0px'),
>     css3: ($(bc_selectors.css3).css('position')=='fixed')};
>
> $('div#r_csstest').remove();
> console.log(bc);
>
> });
>
> --
>   <?php echo 'Just another PHP saint'; ?>
> Email: rrjanbiah-at-Y!com    Blog:http://rajeshanbiah.blogspot.com/

Reply via email to