I thought it looked fine too. I took it from another program I'd been 
writing that worked in both FF and IE.

Here's the entirety of my javascript and includes, etc.:

<style type="text/css">@import url("CSS/Admin.css");</style> // this is 
where the css that you saw is being included.
<script type="text/javascript" src="Include/js/jquery.js"></script>
<script type="text/javascript" 
src="Include/js/jquery-odbcdates.js"></script>
<script>
    $(document).ready(
    function(){$("a.newWindow").click(
        function() {
            var width     = $(this).css("width");
            var height    = $(this).css("height");
            var target    = $(this).attr("target");
            var resizable = $(this).attr("resizable");
            var handle    = window.open(this.href, target, "width=" + 
width + ",height=" + height + 
",menubar=yes,personalbar=no,dependent=true,directories=no,status=yes,toolbar=no,scrollbars=yes,resizable="
 
+ resizable);
            return false;
        });
    });
           
    function logout(){
        $.ajax({
            type: "POST",
            url: "admin/logout.cfm",
            datatype: "html",
            success: function(){
                document.location.href="index.cfm"
            },
            error: function(r){
                <!---
                alert(r.status + " : " + r.statusText);
                --->
            }
        });
    }
</script>


There's nothing here that should cause the results I'm seeing as far as 
I know.

You can see the actual page here: http://www.thecashstore.com/dev/Admin.cfm

(it just now occurred to me to give out the site where the oddity can be 
seen... oops.)

Thanks for your help. Let me know if you see anything that I've messed up.

Thanks,
Chris



Richard Cooper wrote:
> Looks fine to me Chris? Floats right and looks near enough the same as FF. Do 
> you have anything that would change the CSS in the javascript files?
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:267378
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to