hi,
i have been working on this script http://www.acgunsdcroses.com/agencymeter/. it seems like only google chrome is returning a wrong window height and thus sets the height of the divs wrong, leaving a white space between the red and blue divs. strangely enough this only happens when you load the page for the first time in a new wind...
We have been told that Google Chrome runs each tab in a separate process. Therefore a crash in one tab would not cause problems in the other tabs.
AFAIK, multi-processes are mostly used in programs without a GUI. I have never read any technique that could embed multiple GUI processes into a single one.
How does Chrome do that?
I am a...
Hi,
I'm using the following javascript code to display xml/xsl:
function loadXMLDoc(fname)
{
var xmlDoc;
// code for IE
if (window.ActiveXObject)
{
xmlDoc=new ActiveXObject("Microsoft.XMLDOM");
}
// code for Mozilla, Firefox, Opera, etc.
else if (document.implementation
&& document.implementation.createDocument)
{
...
Our organization has decided that my project will be developed for internal use with the Google Chrome browser. So yesterday I started looking around the internet for just how I would go about doing that.
I found the WebKit.org development tool and have been trying to install it using the instructions found here:
http://webkit.org/buil...
I'm working on an application that allows the user to send a file using a form (a POST request), and that executes a series of GET requests while that file is being uploaded to gather information about the state of the upload.
It works fine in IE and Firefox, but not so much in Chrome and Safari.
The problem is that even though send() ...
I have made the lovely discovery that Jquery corners are not working on Chrome. Any solution for that?
I just figured out that when I turn of my config.js file that holds this (rounded corners functions):
$(document).ready( function(){
if(navigator.appName!="Microsoft Internet Explorer") {
$('.round_10px').corners("10px");
...
I put upload button to my webpage, but oddly Google Chrome renedring of upload is very odd. It has this text ("E...a") which I have never ever entered anywhere and it dosen't look at all like other browsers renedering. Are there any ways to make Chrome upload button to look like it looks in other browsers?
...
I'm working on an extension for chrome, where i need to compose gmail messages from URL. Anyone knows how i set the recipient and the subject via URL-Param?? Is there a better approach to do that or is this even possible?
Thx
...
I'm using javascript to make the keyboard input upper case.
For example if I type a lowercase 'a', the window.event.keycode is 97.
Does any one know if the following works in Chrome. Works fine in IE
window.event.keycode = 97 - 32;
should be an upper case 'A'
...
Im trying to close a child window with javascript and in firefox everything works fine but in chrome the window doesnt close
here is what im using
$(document).ready(function() {
if (window.opener && !window.opener.closed)
window.opener.location = "http://www.website.com"
window.close();
});
I tried a suggestion on goo...
Defining gradients in CSS works fine, but when I try to do this with jQuery, nothing changes.
Typing
$('#header').css({background: '-webkit-gradient(linear, 0% 0%, 100% 100%, from(#cfc), to(#afa)'});
in Chrome's (4.0.249.43, Linux) JS console (in page's script tag too) really does nothing (but returns jQuery object, so it's valid).
Tr...
I have the following code that applies a XSLT style
Test.Xml.xslTransform = function(xml, xsl) {
try {
// code for IE
if (window.ActiveXObject) {
ex = xml.transformNode(xsl);
return ex;
}
// code for Mozilla, Firefox, Opera, etc.
else if (document.implementation && doc...
I have two nested divs that are supposed to both be 400 pixels tall. The sidebar div shows up correctly in Chrome and Firefox, but in Internet Explorer 8 I'm having trouble getting it to be wide enough AND tall enough due to Internet Explorer's screwed up box model.
I've tried using the box model hack to fix it, but it didn't appear to...
When we open a window using:
window.open("/calendar",'calendar','width=950,height=576,titlebar=no,statusbar=no,menubar=no,resizable=no,scrollbars=no');
Firefox 3 and IE 7 open it to have a content area height of 576 plus the browser items (URL bar, status bar, etc).
Chrome however opens it to have a total height of 576 meaning a scro...
I am wondering if there is any thing which works like ie conditional comment for webkit.
I want to change width.
For example,
<!--[if IE]>
<link href="css/ie.css" rel="stylesheet" type="text/css" />
<![endif]-->
Thanks in advance.
...
I'm fairly new/inexperienced with web programming, but I'm trying to spruce up my Dad's website a bit. I made some (I believe..) fairly inconsequential changes to this faq page: http://people.ku.edu/~grhodes/FrequentlyAskedQuestions.html (the original can be seen at www.huntvalleydental.com). Now Firefox and IE aren't displaying the form...
Hi everyone,
I wrote this code and it is working nicely in Google Chrome but when it comes to Firefox and other major browsers, it is not even changing a little bit thing :
jQuery("div[style*='line-height:25px']").contents(":not(nodeType!='1',br)").wrap("<div style='margin-bottom:9px;line-height:normal;margin-top:4px'>");
jQuery("div[s...
I have been searching around the web to find out how to access the current tabs DOM to extract information out of a page from the background.html. So far I have had no luck, or at least nothing I could get to work properly.
To state the problem simply. I would like to get src of a iFrame on the page. Any Suggestions?
...
How does one turn off the 'plugin unresponsive' alert when using chrome?
...
I'm looking to make a browser add-on as widely and easily distributable as possible.
Is there a set of wrapper addons for all the major browsers that will let me write one piece of code and it can execute in any of the environments? I don't need anything fancy, just DOM and some ajax stuff.
Something along the lines of greasemonkey fo...