FF & IE Digital Media UI / UX Design by LloydFarrell Hi All, I have found the following css rules on the web.... And whilst they look great in FF, nothing is being displayed in IE Can someone help me out so I can at least see the boxes in IE [CODE] input, textarea { font-size: 0.8em; width: 265px; border: none; background: #fff; -webkit-box-shadow: inset 0 0 2px #000, 0 0 2px #… FF vs IE dhtml/javascript/forms issue Programming Web Development by macslayer Hello, I am having an issue with a page that works fine in IE and not FF. Bascially it is a <div> loaded with a basic coldfusion input form that posts back to parent of the div page. Problem I am having is a validation routine in javascript seems to not to want to find my form or it's elements when I fetch the page into the div (… Re: FF vs IE dhtml/javascript/forms issue Programming Web Development by macslayer Thanks !!! That explains a lot, and this is a rather fundamental revelation for me. Wow, I had been developing discrete pages to allow to easy development, and then would incorporate them into the page via ajaxian ways, while allowing me to jump to opening up pages by themselves if my dhtml ways failed in some way. Never even looked at FF … Re: FF vs IE dhtml/javascript/forms issue Programming Web Development by ~s.o.s~ > another odd thing, is that I do not see the form in the source when viewed by the client > browser, is this just a fact of life for dhtml Yes, because it's the Javascript object XMLHttpRequest provided by the browser at work when fetching content using Ajax. AFAIK, the actual DOM contents at any point in time can be viewed in Firefox … Re: FF vs IE dhtml/javascript/forms issue Programming Web Development by macslayer Thanks, guys. So, let me make sure I have a full understanding. Is it correct to state that javascript does not allow access to rendered page elements pulled via ajax, inserted by dhtml into the document, but it is an IE quirk that allowed it ? While I understand that malformed html could weigh heavily in causing normal processing problems, … FF colapses the layout Digital Media UI / UX Design by Enio Hi, guys if you visit the url [url]www.winstonramalho.com.br[/url] (in portuguese), try to make a tour at PROJETOS under FIRE FOX. I built it based on FF and IE. It worked properly til I have it published on the web. Now, in some cases (you have to make a tour in some projects, clicking on the thumbnails of each project), the FF colapse the … FF/IE wouldn't start... Hardware and Software Information Security by Nicer My problem started off much like the one in this thread: [url]http://www.daniweb.com/forums/thread144432.html[/url] The symptoms of that problem now appear to be resolved...but I assume there is still a bit more cleaning up left to do. The problem started when I could not start Firefox or IE. Every time I tried to start IE, it closed on … Re: FF colapses the layout Digital Media UI / UX Design by MidiMagic Everything worked OK for me on FF 2.0.0.6. I even tried resizing the browser. It sounds like something else you are using (maybe an ad from your ISP) is getting into YOUR computer and making a mess. FF and IE blocked Hardware and Software Information Security by demonboy Hi chaps, I returned from a two week break and in that time my Norton AV subscription ran out and the moment I tried to browse by either IE or FF I have been blocked. I can use MSN and receive email but i can't browse. Can anyone help? I can't do any online scans because I can't get the laptop online! Here is my Hijack log file: [QUOTE]… Re: FF and IE blocked Hardware and Software Information Security by demonboy Thank you very muh for your reply. The first thing I did was load up SP2, something I'd avoided doing when that first came out because of its associations with all things horrible. Since the install my computer is more stable now. As for the FF connection problem, I've sorted the problem out. I won't go into detail but it was to do with the new … FF occationally crashes Hardware and Software Microsoft Windows by Ancient Dragon I'm using FF version 3.0.2 on 64-bit Vista. Every once in awhile it will just simply crash. I can restart and it will take me back to where it was when it crashed. Anyone know why it does that? Re: FF occationally crashes Hardware and Software Microsoft Windows by GrimJack I agree! It is almost always after I have watched any vid. Lately, I have taken to open all the the stuff I want to read into new tabs before I start watching the vids (I follow a lot of political blogs - from [url]http://therightwing.net/[/url] and Politico.com to [URL="http://www.davidcorn.com/"]David Korn[/URL] and [URL="http://… Re: FF occationally crashes Hardware and Software Microsoft Windows by Ancient Dragon Thanks people -- glad to know its not just me. There was an update installed a day or so ago so hopefully it fixed the problem. FF hasn't died on me since then. Re: FF occationally crashes Hardware and Software Microsoft Windows by Ancient Dragon Well, its not fixed yet afterall. I just attempted to visit DaniWeb and FF crashed on me again. I wonder if DaniWeb has any flash content? FF 3.5.7 crashes frequently Hardware and Software Microsoft Windows by Ancient Dragon Every since I got a FF update yesterday (to 3.5.7) it seems to be crashing a lot. Anyone else experience this? [edit]64-bit Windows 7[/edit] Re: FF 3.5.7 crashes frequently Hardware and Software Microsoft Windows by Laser I'm running FF 3.6 beta on my win7 64bit(stable so far), but 3.5.7 is running well on my Win7 32bit. Have you tried uninstalling and then re-installing ? I've had some 'updates' go wrong in the past, and this has fixed me up without trashing any profiles or anything. Re: FF 3.5.7 crashes frequently Hardware and Software Microsoft Windows by csitol Laser, I appreciate the response. I was having problems with a combo of FF 3.5.7, Firebug and Xdebug Helper. There's also a possibility that I have a hardware problem since I'm getting the BSOD. So, I've switched to another computer, I've installed 3.5.7 complete instead of update and I've fixed a problem that kept me from running Xdebug Helper… absolute position a background image FF vs. IE Digital Media UI / UX Design by OmniX FF works perfectly (additional browsers also) but IE (the bain of microsoft) refuses to be the same. Any ideas or other techniques or position I can look at? [code] background-image: url(text.jpg); position: abosolute; left: 100px; top: 100px; [/code] Same code different 100x100 :( Any Ideas? Thanks, Regards X Re: absolute position a background image FF vs. IE Digital Media UI / UX Design by OmniX I fixed it just finished using if css statements. "It really all depends though, if you absolutely position an element in a parent that is already positioned relatively, it will be positioned absolutely to its parent and not the window." If that is true then why is window different in FF vs. IE when both parent windows have specific … Re: FF & IE Digital Media UI / UX Design by Kraai Can you post the html part also? Re: FF & IE Digital Media UI / UX Design by LloydFarrell Here is some html from the form im trying to make [CODE] <tr> <td width="9">&nbsp;</td> <td width="142" valign="top"><div align="right" class="p"> <img src="img/arrow.png" width="16" height="16" hspace="2" vspace… Re: FF & IE Digital Media UI / UX Design by floatingDivs Well, I'm guessing you see the actual data in all browsers, but you don't see a BORDER in IE, correct? If so, that's fairly obvious. You've set "border" to "none", but used browser-specific CSS to create rounded corners for Safari/Chrome and Firefox browsers. Set "border" to "1px solid #000" and see if … Re: FF & IE Digital Media UI / UX Design by Kraai floatingDivs is correct! To ad to his post, I think that IE does not read rounded corners, and once you see the borders in IE, they will not be rounded. Re: FF & IE Digital Media UI / UX Design by LloydFarrell @ Kraai - Many thanks for helping with this - I can now see the boxes in IE.. :) Another ie & ff viewing problem Digital Media UI / UX Design by LeonGray Hello, Being new at this web page design stuff is pretty intimidating! A little knowledge can sure be frustrating. Late night sessions until my head hurts has not solved this problem. Hopefully one of you can look at the is "see" the fix because I can't. I have used code from several sources to develop a page with a scrolling … Re: Getting a text input to look in IE the way it does in FF etc. Digital Media UI / UX Design by Ritesh_4 Well, difference between IE and FF is that IE's interpretation of the css file is sometimes not to perfection, I can say so coz I dev. most of my sites on FF, but when I view in IE, I know there will always be an unneeded space or pixel here and there, so in the end I just do it on FF, and leave as it is on IE, and no one complained so far, and if … XMLHttpRequest, out of the FF frying pan, into the IE frying pan. Programming Web Development by MattEvans I was playing around with XMLHTTPRequests recently, let me just start this by saying I prefer to never have a single JavaScript requirement... so my use of the request is merely... icing on a big webcake. anyway.. In offline testing I can create requests ONLY in IE... in online tests I can create requests ONLY in FF. :| my js file doesn't change,… Page only works in FF Programming Web Development by sugarbabee So, a couple of my pages only work correctly in FF (I don't know about IE), I need it mainly to work in Safari. Please let me know if you spot anything in the script that would be incompatible...I'm new to javascript and Ajax and I didn't initially write this code. The first page is a form to edit or create a new news release. There is a … Sessions and IE8, IE7 and FF Programming Web Development by darkagn Hi all, We are experiencing the following problem with the latest versions of IE and FF in regards to sessions. If anyone has encountered these problems before, any insight would be valuable. [B]In FF:[/B] An ongoing problem where sessions are saved across multiple tabs and windows in the same machine. This means that users that are logged in… IE 7 wont delete record however FF does Programming Web Development by osirion666 Okay very odd Error i created and admin page in jsp with add update and delete functions the add and update work perfect on both IE and FF however delete works 100% in ff and not IE when i refresh in FF the record is removed while IE seems to think the record is still there when i check the DB the record is deleted