Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
history.pushState is causing my extension to crash since update 38. Is there a new way to do this or is this a bug ?
Any crash is a bug. Please file an issue at crbug.com/new, including a crash ID if possible, and follow up here with a link to the bug.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
I am trying to add slider to run on my website but it is trowing this error preventing it from running.
this is link of the webstie
http://victoryauctions.net/
can anyone help me
Remove max-height: 164px from .fetrhgt and .clashgt (maybe it should be min-height?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
Basically I use the responseURL variable that XMLHttpRequest's give back. The problem is for some reason my code wasn't working on Microsoft Edge, but it was on Chrome/Firefox.
You will also notice that the responseURL property isn't in the Edge docs,
https://msdn.microsoft.com/en-us/library/ms535874(v=vs.85).aspx
but is in the Mozilla docs
https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest?redirectlocale=en-US&redirectslug=DOM%2FXMLHttpRequest
Is the responseURL property not available on Microsoft Edge? If so, are there any alternatives I can use?
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
Using the following code in IE:
function clearfields()
{
billing_phone.value="";
billing_email.value="";
billing_first_name.value="";
billing_last_name.value="";
} window.onload = clearfields
Working in Chrome, Firefox but not IE11. Console in IE says "'billing_phone' is undefined", but the billing_phone is definitely defined. Onload problem? I'm using this in Wordpress, so that should probably be taken into account.
You should be referencing the element correctly.
It is either by id="billing_phone"
document.getElementById("billing_phone").value="";
or by name="billing_phone"
document.formName.billing_phone="";
or
document.getElementById("formId").billing_phone.value="";
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
Here the problem is arriving when i am using location.reload() in IE and this error is occurring
This message is to warn you against any financial or otherwise important transaction that was completed earlier and may get initiated again as a result of running location.reload()
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
Working on creating an auto-login app, but I'm running into a problem on the following site:
https://www.navient.com/loan-customers/
Site Element
<input type="text" id="lblUserId" value .../>
Console Code
document.getElementById('lblUserId').value = 'testUserName';
Error Message
Any ideas why this isn't working? I've tried it on several other sites and it works perfectly.
Thanks ya'll!
the site uses frames. switch above console "top frame" to "ctl16_frlogin"