I’ve got a Greasemonkey-for-IE script in IE9 that’s importing jQuery. But on secure pages it doesn’t work.
I’m getting:
SEC7111: HTTPS security is compromised by http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js
The code that fails is:
var script = document.createElement("script");
script.setAttribute("src",
"http...
When i do the following:
$.ajax({
type: 'GET',
url: 'http://www.domain.tld/feed',
dataType: 'xml',
success: function(data) {
...
}
});
Everything´s fine in IE(8).
But when i change the url option to
http://www.domain.tld/?feed=myfeed
IE does nothing. I think the ? is the problem, but how can i get this working in thi...
I have a http handler that is called from a .aspx page in the form 1x1 pixel image. The handler has an extension of .jpg set up in the web.config. On all browsers apart from IE the http handler is called successfully from the body of the page when it loads.
However in IE the httphandler is not called.
If I call the http handler by ent...
Hi everyone,
I make an ajax call with jQuery's "$.get" that returns a string to a function. This string contains both xml and html, and I have to extract some part of the html with jQuery's selectors, for example:
$.get(
url,
function (xml) {
$(xml).find('something').whatever();
}
);
In that case, everything works...
Hi,
I have a asp.net 2.0 web site with WCF service hosted inside it running on .NET 3.5 framework. The website is setup with Integrated Windows Authentication only. The web server is IIS 6 with load balancing on Windows 2003 Sp2 (2 servers). I am unable to access the WCF service (.svc) using the full url (http://myqa2.abcdefg.com/trxn/W...
I work with a lot of jQuery UI code and IE9 seems to slow down to a crawl everytime I browse a page with jQueryUI on it.
You could try it out on the jQueryUI demo pages @ http://jqueryui.com/demos/
...
I was doing some cross browser testing on certain piece of functionality today, and ran across a rather nifty little gem.
In IE8: Out of memory at line: 99
In IE7: Out of memory at line: 100
In IE6: Stack overflow at line: 101
From what I've been able to dig up, most of the time these messages start appearing, it's an issue with havi...
I am acessing the sibling of a checkbox using
parentNode.nextElementSibling.value;It will returns value and works fine in Firefox.But in IE it is saying Object is null
and saying
Microsoft JScript runtime error:
'parentNode.nextElementSibling.value'
is null or not an object
My function is as follows
function chkEnergy() {
...
I have noticed a difference in behaviour between chrome and IE of handling file input clicks.
jsFiddle example here.
In Chrome, clicking anywhere on the input (text or button bit) triggers the file dialogue.
In IE (testing on 7), you have to click on the actual button, not the text bit.
The problem is that I'm using a transparent fil...
We have a problem in IE with some users where the onclick event isn't working:
<button type="button" id="btnSomething" name="btnSomething" onClick="myFunction();">Continue</button>
After digging around the net, people suggested using jQuery's .click event for cross browser compatibility.
So I've tried the following:
<script type="te...
I have a html page that displays some basic account information and begins a long-ish running jQuery AJAX request to retrieve more detailed data. While the Ajax request is in progress it is possible for the user to click a button that has an onclick event to navigate to a new page using location.assign.
Unfortunately if the button is c...
Does IE have Sub-domain Redirection Problem.....
My Application has sub-domain concept.
To Explain -
For Example:
abc12.test.in/view.aspx
xyz14.test.in/view.aspx
From "abc12" site,
am Clicking "xyz14" site-URL, it redirects exactly with URL "xyz14.test.in/view.aspx" in new Window.
But the contents corresponds to "abc12" site.
Su...
Hey guys,
I'm going slightly insane here. I've been trying to figure out what is the problem for the past 24 hours, but I simply can't figure out what is wrong.
I have an article submission framework. First the user inputs some article text fields, then he uploads 2 pictures, then he crops them. The problem occurs when I try to crop t...
We have a few places where we include inline <script> blocks which run code, wrapped by $(document).ready(). Several of these blocks use methods dependent on other external scripts. During normal page execution this technique works fine, but when the user navigates away from the page before it's completely loaded, the $(document).ready()...
Hi,
I've got a script that performs rotation in all modern browsers using jQuery UI and CSS transform property. But I doesn't work in IE. I've managed to make it rotates as expected (around it's center) but I fails when I resize it again.
You can find an example in here http://vremenno.net/examples/jquery-ui-rotation/
If someone could...
Hello,
I am getting an error in IE 8 that says it does support the use of that object, it works perfectly in Chrome and Firefox however.
item = validateDates({endDate:$('#campaign_to_date').val(), startDate:$('#campaign_from_date').val(), required:"none"});
Not sure what is wrong with it at all, since it's just a method call.
...
StackOverlow,
Whats up! I am trying to append a new UL inside a div. It works beautifully in every browser except for, you guessed it, IE. Even though the new UL is appended under the current UL's in IE, the CSS styling is not being applied...I am not doing anything super complex. Just making an AJAX call, getting the results and app...
I have a small JavaScript function that (among other things) retrieves the ID of the last element with a certain class name.
var lastRowID = $(".sectionRow:last").attr('id');
It should find elements in a table that looks similar to the following:
<table>
<tr id="courseSection[0]" class="sectionRow"><td>stuff</td></tr>
<tr id=...
I am new to JavaScript, trying to figure out a tag information value. GWT Code is as follows..
public static native boolean isToolBarInstalled() /*-{
alert("Validating the toolbar installed.");
var metas = document.getElementsByTagName('head')[0].getElementsByTagName('meta');
var i;
alert ("Meta length: "+metas....
I'm trying to create a blurred drop shadow (similar to the CSS3 box-shadow) in Internet Explorer. The most logical way to do this seems to be to find all elements that need a shadow in IE, and inject a new div inside of them using jQuery. This new div will fill the exact same space as its parent, and it can then be blurred using IE's b...