I am developing a site that makes extensive use of JavaScript (jQuery). I regularly get the IE 'Stop running this script?' error dialog when I try to close the browser.
I'm ... |
Are there any jQuery plugins or templates that people use to get poeple to stop using IE6 on their websites?
I recently saw a plugin that was very obtrusive and offensive ... |
I am including some related content on misc. web pages by adding a <script> tag near the end of the <body> tag, which then loads other javascript files. The flow is ... |
I'm using jQuery.getJSON(...) to make a call/process response for a slightly large data set. The response time being a couple of seconds is expected(there's an animated loading graphic to placate the ... |
I have six menu options in my webapp, and when the user hovers over a link (ul>li>a) I switch an image to show a context relevant photo, and I fade the ... |
I am working on a site that pulls a different stylesheet for use based on the current dimensions of the web browser. I wrote the following line of code to ... |
I've had no problems until I upgraded to IE 9.
Here is the javascript:
jQuery.noConflict();
var $j = jQuery;
$j(document).ready(function () {
$j('div.menu_class').click(function () {
...
|
|
Stop running this script?
A script on this page is causing
Internet Explorer to run slowly. If it
continues to run, your computer might
... |
(function ($) {
// ***********************************************
//The main fixedTable function
$.fn.fixedTable = function (opts) {
//default ...
|
I have created a Drupal website that uses Openlayers to display maps. In one of these maps there are some "Filters" which the user can use to dynamically change the data ... |
This is my code:
var comment = getComment(timesheetId,activityId,date,employeeId);
var decoded = $("<div/>").html(comment).text();
$("#timeComment").val(decoded);
getComment function:
function getComment(timesheetId,activityId,date,employeeId){
var r = $.ajax({
type: 'POST',
...
|
I am using Long Polling as a push mechanism in my system.
It is working fine in Firefox & Chrome, but in IE8 the behaviour is quite strange:
It loads OK for 5 ... |
I have a page of more than 2500 anchor tag to process. Now in IE it is throwing the stop script error. Is it possible to do as a batch? Taking ... |
I am running this script:
<script type="text/javascript">
window.onload=function()
{
document.getElementById("loading").style.display = "none";
}
</script>
When I implemented it it my other script stopped working in IE (FF and others work fine)
Why and what should I do to ... |
I can't seem to find what is causing this error in IE 7 works in Chrome. When loading my page in internet explorer it pops up the error "stop running ... |
I'm having some code that sadly doesn't work in Internet Explorer and because it's not absolutely neccesary to have this code work in all browsers I'd like to stop it from ... |
|
I've had no problems until I upgraded to IE 9. I'm running jquery 1.4.4 and also tried it with the newest version. In IE 9, it will work if I switch the browser to IE 8 Standards Mode. When I switch it back to IE 9 Standards it stops working. By stop working I mean I click ... |
Hi guys, I have a site that look great in all browsers except IE. There are some hover effects on the menu and a few other items on the page that look terrible in IE but if I disable the scirpt that calls the hover effects then the items look great.How can I use jQuery to stop another jQuery script ... |
Hello,I have started using jQuery recently and I am having a problem with IE leaking memory when performing a $.getJSON() request at intervals. To test the problem I set up the code to run every second. The only code I currently have running is the ajax request as below:getDetail = function(detailID){ $.ajaxSetup({ cache: false }); ... |