Cached File On Aol, Can I Use Java Script Or Something.
Sep 19, 2003
on a clients site, i am gettign one file that seems to be cached by aol, and i can not seem to get aol to get the new file. he dials into aol strait, and there is no company sever to worry about. so the client sees the old file and gets on my case. just wondering, is there a way to maybe put something in the file header, to make aol get the new file? it has been about 4 days. all the other files that were changed worked out okay just one is not working. i have checked the browser and tried to clear the cache in ie, and still no luck. the client dials in, so there is no company server to worry about...
View 2 Replies
ADVERTISEMENT
Jul 20, 2005
I'm writing this routine that calls the length() member of
java.io.File. Is this object generally available in most mainstream
browsers, or do some of them lock it down?
View 6 Replies
View Related
Jun 3, 2009
I have the following script in my jsp. I want to cut this script and include it in a .js file But it is not working with me.
Here is the script :
Code:
<script language="javascript">
function checkForUnaddeditems() {
var mainElement = document.forms.mainentry
var quatityValue = mainElement.<%=quantityelement%>.value
var productIDValue = mainElement.<%=productIDelement%>.value
var price = ""; .....
I copied the previous code into a check.js file and referred to it in the jsp by
Code:
<SCRIPT type="text/javascript" SRC="check.js"></SCRIPT>
View 2 Replies
View Related
Nov 9, 2011
Can you place java code in an external javascript file (.js).
For example can I do the following in my xx.js file.
Can I do the above?
Another question ...I know <% %> is to execute java code inside html. But what does <%-- - -%> mean?
View 3 Replies
View Related
Feb 23, 2011
I am new to javascript coding.I am unable to forward from my jsp to servlet file via javascript.
View 4 Replies
View Related
Jul 20, 2005
I have two .js files that are used on several of my pages. I made some
changes in one of the files. When I call the pages, the old functions
are called because of the browser's cache. What is the best way to
update the browser's cache with the newer version of my .js file?
View 6 Replies
View Related
Mar 29, 2011
I noticed that all simple jQuery ajax calls are unable to cached by Firefox (no problem with other major browsers).
See the following test code:
$(document).ready(function(){
$("#load").click(function(){$("#test").load("/test.txt");});
[code]....
View 5 Replies
View Related
May 30, 2007
Lets say you have a 1000 line javascript file which is linked to an everyday html file. The browser is set, by default, cache the linked javascript file (after downloading and interpreting it).
But once it's cached and put into a temp directory on the client's computer, is the cached file in an already parsed format? Or something relative? Or is it in the same format as it was on the server-side? This would mean that the .js file is parsed each time the exact same way (as long as the file itself is not changed, deleted, or renewed on the server-side).
View 2 Replies
View Related
Sep 12, 2011
<form>
<input type="text" value="" class="number" name="albertaStudentNumber" id="studentNumber">
</form>
[code]....
View 1 Replies
View Related
Jul 19, 2011
I'm using 2 <script src="script file name here"> tags.
When I make a change to a script in the file in the 1st script tag, I have to turn the browser off and then back on to see the change-reloading the page isn't enough.
How can I make it so I see the changes by reloading the page and not turning the browser off and back on?
View 5 Replies
View Related
Jul 20, 2005
I have an html page that uses javascript to open a new window and
display a file that gets created when a button is pressed.
My problem is when the file is changed and the display button is
pressed, the old file is still displaying. I have tried using
<META HTTP-EQUIV=expires CONTENT=0><META HTTP-EQUIV=PRAGMA CONTENT=NO-CACHE>, but doesn't work 100% of the time.
View 1 Replies
View Related
Sep 21, 2007
I have a <input type = file> button for uploading a file in my php page. As soon as i select a file from the button, i need the file data to be displayed so that i check whether the file selected has the correct data. How can i do this.
View 1 Replies
View Related
Jan 4, 2010
My client will upload some pdf files in my php page.
I want to find a pdf file is normal file or shared review file. If it is shared review file then only i can allow to upload that file.
How can i find a pdf file is normal file or shared review file?
View 3 Replies
View Related
Jul 23, 2005
I have a bunch of .js files that I insert into my my html file using
the <script> tag, and this works just fine. The .js files contain
info about the menu, table set up, etc. and take care of the page
format.
But now, I have a tidbit of Javascript in an htm file, and this tidbit
opens up a new window with some information on it. I want to insert
all of the menu and format javascript files on this new window that it
opens. so, my question is: how would I do this: (since this doesn't work!)
output.document.write('<SCRIPT language=JavaScript
src="/scripts/menu_array.js" type=text/javascript></SCRIPT>');
View 5 Replies
View Related
Jul 20, 2005
Anyone know a good site that'll teach you how to make a drop-down navigation
bar? I assume it is javascript
View 1 Replies
View Related
May 26, 2009
I have a drop down field that is dynamically populated using an XML sheet that looks like:
Code:
I populate the dropdown box using javascript that looks like this:
Code:
My the drop down form looks like this:
Code:
When a user clicks on the drop down box, all of the values inside "<title>" tags get displayed. Once the user has made their selection, the form is submitted and posts the user's option. My problem is that when the user clicks on the drop down box, I want them to see the content included in the "<title>" text but I want the form to post the data included in the "<xml>" tags.
For example, if the user clicks on the drop down menu and selects the option 'Animals' I want the form to post 'xml/animals.xml'. Any ideas how to handle this?
View 14 Replies
View Related
Feb 27, 2005
i have found using java script as an exam timer for displaying it to the client is more good than using php..
but i want the page to exit as soon as 40 misn are out...
if java says 40 misn out is there any way for the php to
note that and perform the rquired action?
i am thinking of parallely starting a timer at the server side in php
do u think so? or is htere any way for java script to tlel php the times out
View 1 Replies
View Related
Aug 21, 2005
I have been creating a webpage and I have added some buttons via frontpage and linked them to another page, the thing I cant figure out is how to add commands like a javascript button to enable a smaller window, no toolbars, no scroll bars etc.
is there any way i can make the buttons so when they are pressed a window opens with my dimensions etc?
View 1 Replies
View Related
Jul 23, 2005
Can Java classes/objects be used from within the javascript code on the
HTML page? I.e., can I call a Java method from the javascript function?
View 2 Replies
View Related
Jul 23, 2005
in JSP, it's easy to pass value from java-variable to
javascript-variable, like
js_function(a)
{ a=<%java-class.A%>
}
I'm wondering how is the other way around? I tried
js_function(a)
{ <%java-class.A=%>a
}
but there was compiling error.
View 3 Replies
View Related
Mar 12, 2006
how is it possible to backdoor a java based chat room?
View 2 Replies
View Related
Jun 30, 2006
I basically want to be able to store and retrieve a tree structure in
greasemonkey. Unfortunately the GM_setValue and GM_getValue functions
only take string key value pairs. Is there a native javascript function
that will serialize the object so that it can be stored and retrieved
as strings?
View 18 Replies
View Related
Dec 13, 2006
i am calling a javascript which is returning NaN and is getting printed
on the broweser i want to supress it.
View 2 Replies
View Related
Jul 20, 2005
I'm looking for a javascript, that can detect which java VM is installed and
what the current version is. Can any of you give me some details?
View 1 Replies
View Related
Nov 20, 2006
I need help with some coding (obviously I am messing something up).
I want my visitors to open up a new page .... tdtest.html.
I have it open up into a new window and at the end of the page I am using this coding to close the window:
<a href="javascript:window.close();">Close Window</A><br>
It is not working at all on either IE or Netscape.
What am I doing wrong, and what is the easiest way to do this?
View 3 Replies
View Related
Jan 10, 2008
I am trying to use the same DHTML combo box script on a web page for our church server. I post the same script on the page deleted the links and add a new link under the different icon and it shows the same links on the previous icon (Fall.gif). I want to use the same code on a different icon with different links. I know how to move the inner menu to position. I just need to make this work on the different icons, i.e. winter, spring, or summer. Code:
View 2 Replies
View Related