Check For Newer Versions Of Stored Pages
Jul 23, 2005
I have a web app that needs the follwing settings
Tools/internet options/settings/
Check for newer versions of stored pages.
I can not rely on the users to do this.
Is there any way to did this programatically?
View 6 Replies
ADVERTISEMENT
Dec 8, 2011
The CMS I use for my site currently runs/supports jQuery 1.7. The developers have chosen to leave the minified v1.2.6, v1.3.2, v1.4.2 files in the system too. I was wondering if any functionality was deleted over time from the lib. Does v1.7 contain all functionality from all older versions? Can I safely delete these older libs?
View 1 Replies
View Related
Apr 14, 2011
On my homepage (only my homepage) in newer browsers (anything but internet explorer), my table (I don't use css) color is not the right color, It's the same as my background color for some reason.Second, my slideshow messes up in newer browsers, and will overlap text that it shouldn't. What I need is either a way to fix the slideshow, or a new one that will work in newer browsers.
View 1 Replies
View Related
Jul 16, 2009
I am quite happy to stay put using v 1.2.6 but with new bits requiring v 1.3.2 etc I would quite like to know why this isn't working when I use jQuery above 1.2.6. There are a few different things going on.
Code JavaScript:
<script type="text/javascript">
$(document).ready(function() {[code].....
View 3 Replies
View Related
May 31, 2010
I need a script that will redirect to a specific page is the browser is safari version 4. if the browser is NOT safari 4 I want the browser to stay on the current page.
View 3 Replies
View Related
Jul 23, 2005
If I have to test my code on different Netscape versions, can I download and run those versions on the same computer or will it create conflicts? And if I had to test only one version which one should it be - which one has the most common elements to all the versions?
View 3 Replies
View Related
Apr 15, 2010
I am running what is called "XpressEngine" on my website. It is a Korean CMS tool that is like Joomla and it loads jquery 1.3.2 as standard on its boards and etc.
I have developed a new design website with jquery 1.4.2 and it works fine with by it self.. but it does not when it loads a board running by XE. I guess the reason is that the websites loads two jquery. So I tried to load the jquery 1.3.2 only so that it can run both my board and the website layout, but layout is not working with jquery 1.3.2. (except, if I only import jquery 1.3.2, then the board works fine but not the layout.) I guess my code is some what requiring jquery 1.4.2.. but I am not sure why yet..
My question is, is there any way to import jquery 1.4.2 and 1.3.2 simultaneously? (I personally think its not possible though..
[Code]...
View 3 Replies
View Related
Mar 27, 2010
I have this function which rounds up the <p>s, checks their ids, twice, for specific letter combinations and, depending on the combination, changes the class name in one of two ways. It's referencing <p> tags with ids that look like this: <p id="Labaabb6">, where 'a' could be 'b' & vice versa, '6' any number from 1 to 6, and 'L' is just there to be zero in the character count. Still here? OK, there are six variations, V1() to V6(): these work standalone, but it'd be good to combine them. This is where I'm having some trouble...
[Code]...
View 7 Replies
View Related
Nov 20, 2004
Are there any javascript versions of this htmlarea that will work on a browser besides I.E. I cant use html area, as i and many of my staff members hate I.E and dont use it. I only need these capabilites
underline, bold, italic, text aligning, listing (numbers or dots)
Is there any javascript alternative that will allow me to do what htmlarea does and on lots of browsers.
View 2 Replies
View Related
Sep 22, 2010
Below is the head section of the page. It works in everything but IE?
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.2.js"></script>
<script type="text/javascript" src="jquery-1.1.3.1.min.js"></script>
<script type="text/javascript" src="jquery.easing.min.js"></script>
[Code].....
View 1 Replies
View Related
Sep 27, 2009
I coded the following JavaScript:
var el = document.createElement("iframe");
el.setAttribute('id', 'ifrm');
document.body.appendChild(el);
el.setAttribute('height', 250);
[Code].....
And am putting it between <script type="text/javascript"> and </script> tags in the <body> section of my site. But, it only works in certain areas of the page.
View 6 Replies
View Related
Nov 15, 2006
Would anyone know what browsers are supported by AJAX in general? I've been trying to find this at several sources, but it's never really mentioned.
View 1 Replies
View Related
Mar 2, 2010
Is it possible to handle conflicts between 2 versions of jQuery loaded in the same page? Assume that two applications (from different developers that know nothing of each other) share the same canvas (page) and each one of the developers is allowed to register global JavasScript libraries on the page. If each developers registers a different version of Jquery how could the hosting page handle conflicts?
View 5 Replies
View Related
Feb 4, 2010
I'm new on the forum and also using JQuery, came to this Framework thru ZendFramework.... My problème is that i've done an animation that works fine on all browsers (Firefox, Opera, Chrome, Safari) but not on any IE ?
[Code]....
View 1 Replies
View Related
Oct 12, 2011
I need to use some features in later versions of jQuery (specifically, hoverIntent in v1.5), but my current sites are running 1.4, and in some cases 1.2.
View 4 Replies
View Related
Feb 10, 2011
Nice for a change: a piece of code that does work in all versions of IE, but not in Firefox. I'm stuck.
<img alt="Loodgieters" title="Loodgieters" src="/core/loodgieters_uit.png" name="loodgieters"
border="0" style="margin-right:1px; margin-top:1px; float:left; cursor:pointer;"
onclick="document.location='/pages/loodgieters.php';"
onmouseover="foto1.style.backgroundColor='#392d63'; loodgieters.src='/core/loodgieters_aan.png'"
onmouseout ="foto1.style.backgroundColor='#008ac9'; loodgieters.src='/core/loodgieters_uit.png'" />
Explanation: element "loodgieters" is a menu button that should change on mouseover. It doesn't in FF, it does in IE. Secondly, when you "mousover" the image, it should change the backgroundcolor of a second element (foto1). Element 'foto1' is a table cell. In return, when you mouse-over this table cell, the image element 'loodgieters' should change as well. So it's a two-way thing.
The code for the table cell is:
<td height="189" id="foto1" bgcolor="#008ac9" valign="top"
onmouseover="style.backgroundColor='#392d63'; loodgieters.src='/core/loodgieters_aan.png';"
onmouseout="style.backgroundColor='#008ac9'; loodgieters.src='/core/loodgieters_uit.png';"
style="cursor:pointer;"
onclick="document.location='/pages/loodgieters.php';">
<img alt="Loodgieters" title="Loodgieters" src="/core/loodgieters.png"
style="border:0; margin-left:auto; margin-right:auto; margin-top:10px; display: block;" /></td>
It all works as I expected in IE, Safari and Chrome, but it does not in Firefox. The whole page validates as XHTML 1.0 Transitional. What am I overlooking here?
View 2 Replies
View Related
Nov 9, 2009
I am trying to write a multifile upload script in JavaScript. Before the upload, my HTML looks like this:
<input type="file" id="file_0">
<input type="file" id="file_1">
<input type="file" id="file_2">[code]......
But, how do I upload multiple files in "all versions" of Firefox and "all versions" of IE?
View 2 Replies
View Related
Sep 14, 2009
I am trying to get an object that is stored as an attribute. In IE7 it works but IE8 appears to return the object as a string value (pretty useless). I tried getting the attribute node and the debugger shows an object as the nodeValue but I cannot access it either. It returns an object in IE7 but in IE8 I get the result of a toString on the object again.
Is there a way to get an object stored in an attribute in IE8?
View 2 Replies
View Related
Feb 10, 2011
I am trying to pull a value being stored in a php function (it works fine) which is echoed into an html element, and use it in a javascript function. my HTML:
<img id="menu_image" src="<?php echo get_php_value(); ?>" width="356" />
my javascript:
function get_large_image(){
var image = document.getElementById('menu_image').src;
alert(image);
}
right now the alert is giving me flie path to the current page, I need a file path to the image. When I had javascript pull a value from an input tag using the id to reference and stored the php function in the value attribute, I got this: "object HtmlElement" The final purpose of all this is to modify dynamically and HTML <a>'s href and class attribute based on a certain condition being true.
View 2 Replies
View Related
Feb 20, 2011
I am having a problem to add numbers store in an array.
arrayValues[0][0] = 1;
arrayValues[0][1] = 2;
var col = 0;
var sum;
for ( var row = 0; row < index; i++ )
sum += arrayValues[col][row];
My result is ==> 12 it is defining my sum variable as string. Even I try do do this var sum = 0; to define sum as numeric variable. my result was ==>012.
View 3 Replies
View Related
Jan 8, 2012
I have a problem with attr() function.I made my own lightbox and with jQuery 1.4.x it works nice. But now I use 1.7 and there is a problem. When I called attr in 1.4 $(element).attr("rel") when element hasn't rel, it returns empty string, but in 1.7 it returns undefined.Why? I read a changelog and I didn't find any change at that function.
View 2 Replies
View Related
Aug 12, 2010
I have a site which uses a version of jQuery that might be an older version and when I try to add the code for PrettyPhoto which uses jQuery version 1.4.2 the site breaks. The earlier version of jQuery is used to implement the accordion effect and the background resizing effect.
Can someone peek at the multiple versions of jQuery in my code and tell me more about what is going on and how I can fix it?
Here is a link to the site in question: [url]
View 2 Replies
View Related
Sep 14, 2011
So when the page loads the thumbnails cycle through using setInterval. When the user clicks on one of the thumbnails, it is supposed to open a new window and show the enlarged version of that thumbnail stored in bigpics. However it only comes up with a broken image link. Any ideas why this is not working?
Here is the code:
View 4 Replies
View Related
Oct 20, 2011
I have a strange issue currently within my event.state I have a function that I would like to execute. So you can say that event.state = function(). How I now execute this function that is stored in event.state?
View 2 Replies
View Related
Jul 14, 2011
Please do not take this the wrong way, but rather as a genuine question I have. I do not want to be negative, but the answer to our bug reporthttp[URL]... One of the main reasons we turned to a javascript framework (we used to use prototype before we - migrated to jQuery), is that we wouldn't need to worry about browsers and versions our users use.[URL].. I now notice that I can not rely on jQuery framework for making functions work cross-browser.
In my opinion, if there is an issue with this, shouldn't jQuery intercept and wrap the call to something that does work in Webkit? Again - this is not meant to be negative, but as an end-developer, I think I should be able to rely on same behaviour of all methods provided in the jQuery library, regardless of what browser/version is being used. (or perhaps at least document it in the api docs?)
View 6 Replies
View Related
Oct 6, 2010
I'm brand new to jQuery, so I apologize if this is a 101 question, but I'm trying to sort out a production issue. I do QA for an ecommerce website. When one of our developers made some changes to our application recently, a couple of the plugins we use stopped working on those pages. Looking at the code, it seems we load jQuery 1.4 and several plugins, including autocomplete and popdown. In the changes, for some reason, the developer loads jQuery 1.4.2 (after 1.4 has been called) but doesn't call the plugins again. I'm assuming that this is the reason the plugins stop working. Can anyone confirm this theory?
(The reasons why we don't call 1.4.2 earlier in the document are, sadly, mostly bureaucratic. If I can get this confirmation, hopefully I can push through that.)
View 1 Replies
View Related