Deleted A Section Of Code In The JS File, Yet It's Still Appearing In The Browser, Both IE And FF?
Nov 3, 2011
I have an Extjs web app that's running on a spring/rest backend & I'm having a really strange caching issue with my web app's javascript files & no-one seems to be able to tell what it is.The issue is that I have deleted a section of code in the JS file, yet it's still appearing in the browser, both IE and FF.
Manually remove & re-add the file
Rollback the file to a previous version
Remove the file from the index.html and re-add it
Clear all cache in FF & IE
Disable firebug
Check the script is updated by manually accessing the file via the application URL & Firebug Script tab
Renaming the JS file
Renaming the index.html file
I'm at a loss as to what could be causing it.
View 1 Replies
ADVERTISEMENT
Jan 17, 2011
I am doing task for deleting cookies in javascript for IE and Mozilla. for that i written function is
Quote:
function deleteCookie(name, path, domain) {
if (getCookies(name)) {
document.cookie = name + "=" +
((path) ? "; path=" + path : "") +
[Code]....
Now , How i know whether my cookies get deleted or not.I am not sure whether my browser cookies are deleted or not
Is there any test is there from where i can confirm the same.
View 3 Replies
View Related
Jun 6, 2009
i want to ask that is it possible that using javascript injection the contents of a web page can be altered (add / edit / deleted) in Line of Code.Since, this has happened with me couple of times,talking to the support team at my hosting provider, they say that its due to the security holes in the Coding, but i think that its the security issue at the hosting side (since modifying the web pages code)i've found this code immediately after the opening of the body tagearlier the page snoofing for the above URL was working, but now its not producing the output. (so can not post whats inside it).My Another website (hosted by the same provider) is also infected. there the code immediately after the body tag is again the page snoofing yeilds no output with the error
View 6 Replies
View Related
Apr 1, 2011
In Jsp page some Java Script code is there .When I run the JSp file then java Script code is shown in the browser.
View 1 Replies
View Related
Dec 17, 2009
I have encoded same javascript file with "Microsoft script encode" and accidentally deleted the original file.There is a way to convert the encoded file into the original version.. The form of the encoded file is : <script type="text/jscript.encode">#@~^.....
View 5 Replies
View Related
Sep 29, 2009
I would like to create a dynamic button which adding new rows to my table and then sending it to PHP, I manage to create the JS function but after the rows have been added its not apearing the HTML code and by that I can't send it to PHP by form. here the code:
function Addline(ObjId,ItemAdd){
/*
*Addin One Line to the table[code].....
View 1 Replies
View Related
Jun 14, 2011
In the Portfolio Module of Business Catalyst (see this page: Portfolio, I have the thumbnail of the websites and when clicked it enlarges with the description underneath. However, I would like the description to actually be a link that when clicked will take the visitor to the actual website depicted in the image. I tried to surround the text with the <a href> tag, but the code actually appears on the page.
[Code]...
View 6 Replies
View Related
Mar 16, 2010
I am working on an image gallery that display thumbnails and display bigger image onclick. I now have an animated gif that display until the image is loaded.
I want the animated give to display for about 1.5sec before the bigger image display.
What should I do to my code to pause or have a delay before the big image are loaded?
My Code in head is as follow:
Code:
And in body:
Code:
View 1 Replies
View Related
Sep 13, 2007
I've been asked to pack a very simple javascript function that resides
in the <headsection of a page. I have the function working the way I
want, but when I pack it using this packer:
View 2 Replies
View Related
Sep 18, 2010
On my site i use a lot of features that are unsupported by older browsers, and right now it looks pretty stupid when the features are only partially shown. So i was wondering if there's a way of making the browser look to different css files depending on which browser and version it is. For example, css3 gradient backgrounds are supported in firefox 3.6 or something, but not in 3.0. All the hacks out there is to 3.*, so it changes for the allready working 3.6 too if i hack it. I want to controll it so that i have a specific css file for the none-supporting version and lower and one for the supporting and above. I looked at a bad browser plugin (because it has some of the basic features im looking for)
View 15 Replies
View Related
Dec 21, 2010
If a form as an input='file' element, and someone clicks on BROWSE and then changes their mind and clicks CANCEL, if JavaScript can detect that cancel?
View 2 Replies
View Related
Jun 30, 2010
I am VERY NEW to javascript programming as I am to web development. I am pretty decent with VB.Net though. My question is, what are the different ways to call a JavaScript Function either from within XHTML Markup code or from a VB.Net Code-Behind file?
View 3 Replies
View Related
Dec 22, 2005
I am trying to update a <p> tag using the .innerHTML property. The <p> tag is set-up as
<p id="p_id">
<form id="form_id">
<![CDATA[Other form stuff here]]>
</form>
</p>
And my JavaScript
document.getElementById('p_id').innerHTML = 'my message here.'
alert(document.getElementById('p_id').innerHTML);
When I call that JS code, it adds "my message here" in front of the form and only alerts "my message here", not the form code.
When I add text by default in front of the form code, that gets replaced but the form still remains.
View 4 Replies
View Related
Jul 28, 2009
Not sure whether this is a bug, but is is certainly unexpected behaviour. When i try to use replaceWith on a <div /> instead of a <div></div> (which is correct HTML syntax) it causes, not only the div but all code after the div to be replaced. see the code here: [URL] I will make a bug report if others also think this is a bug.
View 2 Replies
View Related
Jan 3, 2011
Aside from using code to delete a JavaScript session cookie, what can arbitrarily overwrite/delete a JavaScript session cookie?
I ask because I have something that is working flawlessly in development; but as soon as it's moved into a staging area for testing, it stops working.
My initial thought was that there is something causing the browser to think that it's being redirected to another domain, thereby deleting the session. But further testing indicates this is not the case.
Basically put, I have a detail page for clients that contains nine categories; all categories are loaded in an "expanded" state (shows all information for each category) and has a "hide" link next to the header. Click "hide" and the whole category collapses, and the link becomes "expand"; click "expand" and vice-a-versa.
Also on initial page load, the document looks for a session cookie called "vddstatus"; if it does not exist, it creates the session cookie with default values set so that all categories are expanded; if it does exist, it checks the values and adjusts the expanded/hidden status as needed. This way, no matter what page you go to, when you come back to the details page, it remembers the expanded/hidden status of each category.
Like I said, on the development server it works excellently; in the staging environment, the only time it remembers the category statuses is if you click "HIDE ALL"; anything else it apparently deletes the session cookie and generates a new one, set to all categories expanded.
View 14 Replies
View Related
Oct 26, 2010
This code is supposed to create a new row so i can add more data to it, but the thing is that when i hit the enter key to create a new field it will delete the information i just entered.[code]For now, just ignore the fact that the submit button is disabled, that one should be enabled once i had validated every entry against a database using ajax.
View 3 Replies
View Related
May 27, 2009
I have the following Javascript code and I can't seem to get it to work properly...
function DeleteSelectedBookmarks() {
bookmarksToBeDeleted = array();
if (document.deletebookmark.elements.length == 1) {
if (document.deletebookmark.deletebookmark.checked) array_push(bookmarksToBeDeleted, document.deletebookmark.deletebookmark.value);
} else {
checkboxes = document.deletebookmark.deletebookmark;
for (i = 0; i < checkboxes.length; i++) {
if (checkboxes[i].checked) array_push(bookmarksToBeDeleted, checkboxes[i].value);
}} if (count(bookmarksToBeDeleted) == 0) {
alert("You haven't selected any bookmarks to delete.");
return;
}
$.get("bookmarks.php", {delete: serialize(bookmarksToBeDeleted)},
function (result, bookmarksToBeDeleted) {
if (result == "done") {
if (count(bookmarksToBeDeleted) == 1) alert("Bookmark Deleted.");
else alert("Bookmarks Deleted.");
} RefreshBookmarks();
});}
What it is supposes to do is gather the amount of bookmarks that need to be deleted and then send the command to the server to do so. The server then gives a message back (if it is successfully the result is "done") and depending upon how many bookmarks it deleted it gives a different result, ie. singular vs. plural. How do I do this?
View 1 Replies
View Related
Jul 20, 2005
I want to know the height of the viewable portion of a page (minus scrollbar)
in Opera and Mozilla.
For Opera, I could use document.body.clientHeight. Unfortunately, this won't
work in Mozilla because Mozilla also subtracts the sizes of the top and bottom
margins.
For Mozilla, I could use document.documentElement.clientHeight.
Unfortunately, this won't work in Opera because Opera returns the height of
the entire page, not just the viewable portion.
So I have two options:
1) Use browser detection code to determine if the user is running Opera or
Mozilla, and then use the appropriate clientHeight code.
2) Use window.innerHeight. This is supported by both Opera and Mozilla,
however it returns the height of the viewable portion of the page *including*
the scrollbar. Is there any way to determine the width of a scrollbar? If
not, then I would have to make an assumption and subtract the hardcoded width
of the scrollbar from window.innerHeight... but only if the scrollbar is
present, is there a way to determine that?
View 4 Replies
View Related
Nov 10, 2010
I'll be the first to admit, I am not skilled with javascript, but I can do a little work here and there. I remember learning there is a way to detect a user's/viewer's browser. Is there a possible javascript that allows me to detect a viewer's browser, the based on the browser, selects css/html to use so that the website is viewed correctly?
View 9 Replies
View Related
Aug 29, 2009
I have a chunk of jquery that is working in all browsers except IE.
I know it's possible to target a piece of code AT a specific browser but is there any way to EXCLUDE it from a certain browser?
I'd be happy for IE to just not see this chunk of code...?
View 2 Replies
View Related
Jul 2, 2009
I wanted to know if we have some validator tool available which can validate our jsp code for W3C standards and for cross browser compatibility for browsers like IE, Mozilla, Chrome.
View 1 Replies
View Related
Jan 11, 2005
I am writing an application that (unfortunately) will work only with certain browsers and operating systems. Does anyone have a link to a good "browser/OS detection script"?
I'm looking for something simple that I can just include in each page of my html code, and us it like this:
if (! IE5.5+ for windows) {
fail
}
View 14 Replies
View Related
Mar 23, 2006
I'm Using ajax Coding For select Box options, When i select the first select Box , Based on that the second Select values will be displayed. Code:
View 1 Replies
View Related
Nov 26, 2007
Simple JavaScript code for browser detection:
/**
* Browser detection
* @Created-On 2007-11-27 23:46:51
*/
function detectBrowser(){
if(navigator.userAgent.indexOf("Opera")!=-1){
return "Opera";
}else if(navigator.userAgent.indexOf("MSIE")!=-1){
return "MSIE";
}else if(navigator.userAgent.indexOf("Navigator")!=-1){
return "Netscape";
}else if(navigator.userAgent.indexOf("Firefox")!=-1){
return "Firefox";
}else if(navigator.userAgent.indexOf("Safari")!=-1){
return "Safari";
}
}
View 9 Replies
View Related
Sep 30, 2010
I am having some problems with some JS code that does not work cross browsers code...
View 1 Replies
View Related
Jun 1, 2009
I have a site where I'm using a home-grown social bookmarking tool. The user has an option to "Bookmark this page" to their browser.
My code works, but the problem is that when I dynamically grab the document.title, the browser (both IE and FF) tries to resolve any spaces or special characters so that when the favorite is stored in the browser, the bookmark reads:
"This%20Site%20Bookmark"
instead of:
"This Site Bookmark"
I feel like there must be a simple function to resolve spaces, but I'm coming up blank, no pun intended...:)
View 3 Replies
View Related