Limiting To Pdf Files Only
Jun 20, 2005
I have the following button code in one of my forms to find the path to a file the user is going to upload:
<input type="file" name="file">
When windows open it's file browser it shows/lists all files. Is there a way to only have it show pdf extension types only?
View 2 Replies
ADVERTISEMENT
Jul 10, 2007
http://www.dynamicdrive.com/dynamicindex4/thumbnail2.htm
I intend on using this gallery viewer on my site.
Is it possible to make it so that image that is displayed in the div is limited to certain dimensions.. say 100 by 100px. If an image that is displayed is above the limit, the excess is simply just out of view..
I dunno how this would be possible maybe by a use of some sort of mask, i normally code inflash im not sure if taht is possible with divs in html. Or maybe you can limit the size in the js file, if your allowed to.
View 1 Replies
View Related
Jul 23, 2005
I have a input filed of type "textbox" into which I am expecting to get
currency values (ie. 199.99). Is there a way that I can restrict the
user to only entering 2 values after the decimal point?
I can restrict the maxlength to 5, but that wouldn't stop the user from
type in 1.987.
View 10 Replies
View Related
Mar 22, 2010
I have the following javascript code:
elms=document.getElementById('friends').getElementsByTagName('li');
for(var fid in elms){
if(typeof elms[fid] === 'object'){
fs.click(elms[fid]);}
}
Which grabs all "li" tags with the ID "friends" , and then goes through and clicks all of those elements.How would I go about having it to where it only clicks up to 200 elements, and not all of them.
View 2 Replies
View Related
Apr 14, 2011
im trying to set a textbox to only accept alphanumeric characters but it needs to accept a space in between each entry because it is a textbox all i can get it to do now is only allow numbers to be entered using the following code:
[Code]...
View 2 Replies
View Related
Feb 3, 2009
its possible to limit variables example I have a variable called myCurrency containing 3.454 well sort of pass it to a function that makes it become 3.45 though if the third number is higher than 5 it rounds it.
example: 3.457 = 3.46.
View 5 Replies
View Related
Dec 24, 2011
I am no coder, however I am modifying my website and changing the slideshow to the one found on this website, most wonderful, the Cut & Paste JavaScript Slideshow : [url]
I have it working now, and I have but one question, does the code include a way to limit the number of times that it cycles through the slides? So it just freezes on one photo after x number of cycles?
View 8 Replies
View Related
Nov 6, 2009
I have this code which I found which loads XML/RSS feed and displays the entries.
However, it outputs every entry.
I would like to add a way to limit the output, via a parameter, but I am not sure how to do it.
Code:
<script type="text/javascript">
$(function() {
$('#journal_feed').renderFeed('journal_rss.xml');
[Code]....
View 2 Replies
View Related
Jul 8, 2003
Is it possible to use javascript to limit a textarea to one hundred words (of 3 or more letters).
I am building a contest form for my company. It's one of those that you have to write why you want to do something in 100 words or less. I would like to have it check their writing while they're writing. It would be really cool to tell them how many words they've used.
I've seen javascripts that tell you how many letters in a given field. Something like that would be perfect. Does anyone have something like that or can you point me in the right direction?
View 9 Replies
View Related
Mar 30, 2004
I'm trying to limit the number of items that can be passed to the 'list1' select box to ten items. The way I have it now, it pops up a warning if user tries to pass more than ten, but then passes the first ten of the selected items through to list1 anyway. I don't want it to pass any items if they try to pass more than ten...just show the popup, and make them try again. Code:
View 18 Replies
View Related
Aug 16, 2010
I have designed a mail service in java.In my compose page,i want to attach some excel files of text files and to send it.After sending i want to store it my database.Then how can i download or open that file after opening that recipient mail inbox.
View 1 Replies
View Related
Oct 2, 2010
I have the following JavaScript (see below). The script requests an XML file from the server and displays it on the page.The script works fine when the requested XML file is stored on the same server as the script.The problem is when I try requesting an XML file from an external server such as the National Weather Service. I get an error. If I take the XML file from the National Weather Service and save it to my server it works. Why can't I use my script to request XML files stored on external servers?
Javascript Code
Code:
window.onload = initAll;
var xhr = false;
function initAll() {
document.getElementById("makeTextRequest").onclick = getNewFile;
[code]....
View 6 Replies
View Related
Feb 26, 2011
How to create a function that would allow me to add to or subtract from a maxvalue, and thankfully I got help regarding that. However, something's got me stumped for the past few weeks that I still can't resolve...
This is the relevant code:
As it stands, it works as long as the total value is less than or equal to the limit (for advantages it's 15, for disadvantages it's 10). However, the moment it goes past the limit -- for instance, if you change Antisocial's value from 2 to 7, or if you add several additional checkboxes with any values -- the whole thing starts going crazy; specifically, maxvalue doesn't revert to 40 when the all the checkboxes are unchecked.
What I'd want to happen is that the user cannot select or apply advantages or disadvantages if the maximum advantage is greater than 15 or the maximum disadvantages is greater than 10.
I'm thinking that a button for adding disadvantage points to/subtracting advantage points from the maxvalue (that becomes disabled if the user goes past his limit on advantages/disadvantages) is useful at this point, but I'm really stumped on the implementation of the idea. An alternate idea of mine is that all other advantage/disadvantage checkboxes would become disabled if their value is greater than the remaining number of points, but I don't know how that is possible either.
View 2 Replies
View Related
Jan 14, 2009
How can this be limited to certain tables/table rows?
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
[code]....
View 5 Replies
View Related
Aug 27, 2010
In my quest to implement ajax for the first time i've hit a brick wall. i've been searching for hours for a solution but with no success. Here is the problem.
[Code]...
why is it not working? my PHP code is outputting the contents of the xml document.
View 1 Replies
View Related
Sep 5, 2008
I want to write a javascript to list of all files in a folder including files in the subfolders. This is for the scorm purpose to list all the files. some examples are listing files but not listing the files inside the subdirectories. I want the file's full path like C:Documentsjavascriptwilson.js like this.
View 5 Replies
View Related
Jan 15, 2010
I have four folders and each folder has one images, let say ( images-one.jpg, images-two.jpg, images-three.jpg, images-four.jpg). now,in index.php page there are four buttons, each buttons for each images. if i clicked button numer two for images-two.jpg, and then it will show that images name from that folder in index.php page. and then if i reload same index.php page or refreshed same page, i want to show SAME images that I clicked before which is images-two.jpg. how can i write that code to show images from four files, each files are in each folder.
View 1 Replies
View Related
Sep 7, 2009
I have a pretty basic set of things I want to do: Capture key press, compare against an allowed list, block keys that are not in that list, replace a space by a dash if entered. As this is happening, I have a span I wanted to be updated with the live values. The username field at [URL] is exactly what I am trying to do, though I have trouble dissecting how they did it. Here is my attempt, which is off by one keypress for some reason.
[Code]..
View 2 Replies
View Related
Apr 21, 2011
I have a form with two text input boxes. I want to limit the text typed into the boxes as follows:
1. Either box can have the number 2 typed in, but the other box must remain empty
2. Each box can have the number 1 typed into
Is this possible with JS and, if so, how do I do it??
View 7 Replies
View Related
Jan 9, 2011
What is the correct way to work with multiple language JavaScript files? So how to use your PHP language variables in your JavaScript files? The way I do it now is create JavaScript files like 'script_js.php' like this:
[Code]...
View 10 Replies
View Related
Aug 27, 2009
The problem is, I might want to change the html I include based upon variables passed between web pages.My problem is I don't know how to include html files in html files using javascript! How would you do this?
View 1 Replies
View Related
Jun 14, 2007
I have some Flash SWF games on my website with advertising banners on them.
People access a certain game by going to
http://www.mysite.com/flashgame.htm. With IE no problem. But in Firefox they
can type in http://www.mysite.com/flashgame.swf and bypass my banners. The
banners help pay for me hosting these games.
Is there a way with javascript that I can tell when they are going directly
to the swf file instead of going to the htm page? And redirect them to the
htm file?
View 6 Replies
View Related
Jan 13, 2006
I need to change like 500 .eml files to .xls files.
Is this even possible?]
View 2 Replies
View Related
Feb 6, 2006
In lets say I have an HTML document that has this in it:
<script type="text/javascript" src="file1.js"></script>
<script type="text/javascript" src="file2.js"></script>
I am trying to use a function that is defined in file 1 inside file 2. Its not working because its telling me that the function is undefined. Is there any way to make one file "see" the functions inside the other file in javascript?
View 5 Replies
View Related
Oct 20, 2005
I have a question. Is it possible to write a text file using JavaScript?
View 2 Replies
View Related
Apr 22, 2006
I have a form, which has a user and password, that a user enters
when i want to submit this form....
i would like to submit it to 2 two different files.
so file1.asp would have user and password....and file2.asp would have
user and password.
i would like two different windows to open, if possible. so the user
can work on both windows at once.
window 1 = file1.asp
window 2 = file2.asp
View 13 Replies
View Related