I am using jQuery 1.2.1. The problem has to do with position:absolute in the css file. I can change position to fixed or relative and I can see the time but it does not position correctly.
On Dec 17, 10:20 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > Jimbo - make sure you are using at least jQuery 1.2.1 - I think it should > work with the older versions but you never know. It looks like you might be > using an older version. If that still doesn't work then we can continue to > troubleshoot. > > -- Josh > > ----- Original Message ----- > From: <[EMAIL PROTECTED]> > To: "jQuery (English)" <jquery-en@googlegroups.com> > Sent: Monday, December 17, 2007 7:32 AM > Subject: [jQuery] Re:ClockPickand IE7 > > > Josh, here is a small test page that I setup for testing. Thanks. > > > <html xmlns="http://www.w3.org/1999/xhtml" > > > > <head> > > <meta http-equiv="Content-Type" content="text/html; > > charset=windows-1252"/> > > <title>Real-closer.com</title> > > <script type="text/javascript" src="scripts/jquery.js"></script> > > <script src="scripts/clockpick.js" type="text/javascript" ></script> > > <link href="Page_CSS/clockpick.css" type="text/css" rel="stylesheet" / > > > </head> > > > <body> > > <script type="text/javascript"> > > > jQuery(document).ready(function(){ > > $("#test").unbind().clockpick({layout: 'vertical',minutedivisions: > > 12}); > > }); > > > </script> > > > <form id="form1"> > > <table id="HeaderTable"> > > <tr> > > > <td > > > <br /><br /><br /><br /><br /><br /><br /><br /><br /><br /> > > <input id="test" type="text" /> > > </td> > > <td></td> > > </tr> > > </table> > > > </form> > > > </body> > > > </html> > > > On Dec 16, 11:27 am, "Josh Nathanson" <[EMAIL PROTECTED]> wrote: > >> Jimbo, do you have a link you can post? I don't have IE7 running so I > >> can't > >> test it myself, but I can take a look at your code. Or if you can't post > >> a > >> link just post your code to the list. If it works in IE7 in the demo it > >> should work in your own environment. > > >> -- Josh > > >> ----- Original Message ----- > >> From: <[EMAIL PROTECTED]> > >> To: "jQuery (English)" <jquery-en@googlegroups.com> > >> Sent: Saturday, December 15, 2007 1:40 PM > >> Subject: [jQuery]ClockPickand IE7 > > >> > Josh, > > >> > I just found this group so I thought I would post my problem here. I > >> > haveClockPickworking very well with Firefox. I tried this with IE7 > >> > and all I get is a Grey box at the bottom of the page. I created a > >> > plain html page with only the js and css files needed to make > >> >ClockPickwork and got the same result. I commented out > >> > position:absolute in the css file and now I see all the text but it is > >> > not positioned correctly. I can run your demo just fine with IE7 so I > >> > must be doing something wrong but I sure can't figure out what. Any > >> > help would be very much appreciated. > > >> > Thanks.