0
votes
3answers
35 views
Intercepting call to the back button in my AJAX application: I don’t want it to do anything!
I have an AJAX app. A user clicks a button, and the page's display changes. They click the back button, expecting to go to the original state, but instead, they go to the previous page in their …
0
votes
1answer
20 views
How to disable browser autocomplete in XHTML 1.0 Transitional
Normally the answer would be to set the form attribute autocomplete="off" but it is not XHTML 1.0 transitional compliant.
¿Is there another way to disable this browser feature?
Thanks in advance...
…
0
votes
1answer
36 views
Problem with jQuery live and IE
I'm having some trouble with jQuery and IE. I've narrowed it down to this:
jQuery("#missionDashboardRoleFilter").live("change", function(){
alert("called");
});
<select …
1
vote
1answer
58 views
print out paging with css | page-break-before:always; cross-browser issue!
Hi friends,
I have an issue about print paging. you can see my code below. it is not making page break for the print preview :( any idea what can be the problem?
Appreciate helps!
HTML Code
…
1
vote
4answers
41 views
jquery / javascript setting width fails
Greetings!
I have encountered this problem:
Depending on numbers from I want to create a bar chart. Interestingly it works very well in IE8 set on quirks mode, but fails everywhere else. I cannot …
0
votes
3answers
92 views
Javascript: document.execCommand cross-browser?
I just stumble on a piece of code which I never saw before (granted I can't call myself a JS expert):
document.execCommand('Copy');
which seems to copy the clipboard contents to the element in …
3
votes
3answers
55 views
What is the difference between Browser , Rendering engine and user agent?
To make cross platform and cross browser website application what is the role of user agent switcher?
https://addons.mozilla.org/en-US/firefox/addon/59
Is user agent different thing then rendering …
0
votes
2answers
26 views
JS: mouse coordinates relative to an element
Is it cross-browser to catch the mouse coordinates relative to a div box with this:
pos_x = event.offsetX?(event.offsetX):event.pageX-document.getElementById("thebox").offsetLeft;
pos_y = …
1
vote
2answers
36 views
neon-glow effect in IE8
The following css creates a nice neon-glow effect around text
{
text-shadow: 0em 0em 0.3em white; /* assuming a dark background */
}
However it doesn't work in IE7/8
For a reference, compare …
1
vote
1answer
49 views
Why doesn’t my JavaScript XML processing code work in Safari?
I use the following code to open an XML document. It works in Firefox and IE, but fails in Safari. Any idea why?
function crearObjetoXML(archivoXML){
//--- IE.
if(window.ActiveXObject){
…
0
votes
2answers
168 views
IE8 focus pseudo class and Sibling Selector
I have some mark up and I am trying to have the "hints for some input" light up when the accosicated text input has focus. I am trying to use the focus pseudo class along with a sibling selector. If i …
0
votes
2answers
31 views
Does Firefox add any proprietary values when I add a border (like IE does with hasLayout)?
I have a doosie of a layout problem that looks like a browser bug.
It manifests only in FF3 (haven't tested ff2).
It only shows up on the first load of the page. If I resize the window it behaves …
0
votes
3answers
39 views
What is the best service for cross-browser screen shots?
I have a website that I'd like to monitor for display problems in various browsers (mainly Internet Explorer.) I know that browsercam.com and broswershots.org provide this as a service. Could anyone …
0
votes
2answers
26 views
Browsers issues
Hi guys,
I am having a cross browser problem with IE 7 and I have decided to go for a different style sheet for it. Could you please advise me what is the best way to call IE7 when used? And keep of …
3
votes
5answers
136 views
Windows 7 rendering web pages differently than XP or Vista
Since switching to Windows 7, we've noticed that several of our web pages have slight differences. It mostly shows when looking at form elements (text inputs & submit buttons). They are slightly …
