Tagged Questions

2
votes
4answers
121 views

JavaScript object detection: dot syntax versus 'in' keyword

I have seen two ways of detecting whether a UA implements a specific JS property: if(object.property) and if('property' in object). I would like to hear opinions on which is better, and most ...
2
votes
3answers
152 views

Javascript difference between IE and Firefox

I have the following lines of Javascript: var button = document.getElementById("scriptsubmit"); button.setAttribute("class", "remove"); In Firefox this works perfectly and in Internet explorer it ...
1
vote
1answer
107 views

Javascript xmlHttpRequest object detection vs try..catch

When checking whether a particular browser supports AJAX, object detection is what I usually do: if (window.XMLHttpRequest) { xhr = new XMLHttpRequest(); } else if (window.ActiveXObject) { ...
1
vote
5answers
10k views

Detect IE8, IE7, Safari, FireFox with jQuery 1.3+?

I need to change a value based on each browser since they all render differently. if (navigator.appName == 'Netscape'){ top = 17; } This was working but unfortunately both Firefox and Safari show ...