Confounding JS Src File Path Issue.
Feb 9, 2005
These URLs point to the same file with the same JavaScript code:
ftp://u35335977GST:522106@s87570026....eechapter.html
http://www.stop-headaches.com/freechapter.html
The first URL works and calls the JS src file without a problem.
The second one does not.
The src file call uses a path relative to the current directory.
I have had the client email her host to see what they say.
I don't see any reason why it should work from one URL and not from the other. !?!
View 2 Replies
ADVERTISEMENT
Apr 27, 2009
I'm using a script to include images into a slide show using direct URLs to the image files, but I am using fckeditor (PHP) for my users to edit their content. The script in the .js file that pulls the images into the slide show.The user's image file is going to be named something like, "userImage01.php". Inside that file would be their image location path ~ "images/user/image1.jpg".Therefore, I need the above javascript to pull-in "userImage01.php" INSTEAD OF the image's location path.
View 10 Replies
View Related
Sep 1, 2011
I'm trying to put in place a file upload validation check. So at the client-side, the User selects a file. Before uploading, at the GUI, if the file exceeds an imposed limit, it will prompt the User that it exceeds the permitted size for upload.
And if it is within the permitted size, the full file path of the file to be uploaded will then be obtained and then used for the actual upload to the Server.
My program is built on EXTJS and Java, running using Tomcat. Browser restricted to Internet Explorer 7 only.
View 1 Replies
View Related
Jan 28, 2010
I have one html-file where the user inserts a search path for an excel file. When the user clicks the button the data in the excel file should be presented in a <TABLE>. (Yeah, I know, activex only works in IE .. but that's good enough for this project)
The problem is .. I started out with a "fixed" search path for the excel file, so I didn't have the code in a function. That worked just fine. Once I added the function {} around the code it wouldn't work, it works just fine if I comment out the form-part and the function-part, and give the search path, of course.
It also works just fine if I use the function and form, but remove the <TABLE>- and <TR>-rows
[Code]...
View 1 Replies
View Related
Nov 30, 2011
I'm trying to get the full path of a file with a file uploader form with FF. I see HTML5 permits this but I cannot find any concrete examples to access this value from a normal html file uploader form.
View 2 Replies
View Related
Apr 15, 2011
I have set up a script on my page which automatically reads the files in a specific directory on the server and displays them in a nice file tree on my website so users can download the files. Here is the script: http://abeautifulsite.net/blog/2008/...ery-file-tree/Here is the script in action on my website: http://ligonier-in.org/onlineservice...ents_test.htmlThe plugin is working fine as far as finding the files and displaying them. However, the root folder where the files are stored is not the directory you would go to to access the actual files.
Long story short, the script is trying to download the file at
http://ligonier-in.org/home/cityofli...pplication.pdf
I need to 'parse' that url and force it to download the file from:
[code]....
View 9 Replies
View Related
Jul 23, 2005
I have the following directory structure
index.jsp
a.js
b.js
|
|--/templates
|
|--/blah.jsp
Now blah .jsp is included INSIDE index.jsp.
In blah.jsp I have a button that calls a function inside b.js.
In index.jsp I have following code inside head tags:
<script src="a.js"></script>
<script src="b.js"></script>
and I figured since blah.jsp is included inside index.jsp, I should be
able to access the javascript methods with ease. But its not happening
that way. I get an error (object expected in the line that has button in
it). BTW, its not a problem in my JS or JSP code, because if I put the
js file's contents inside blah.jsp, then it works like a charm!
So what am I doing wrong?
I also tried moving my script import statements inside blah.jsp as:
<script src="../../a.js"></script>
<script src="../../b.js"></script>
But this doesn't seem to work either?
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it!
View 3 Replies
View Related
Jul 16, 2009
i have this web application in which the user has to browse and select a folder but not file. i used <input type="file"> , which helps in retrieving only files.
View 3 Replies
View Related
Jul 23, 2009
I need to delete the path from certain files using js.
For instance
Change: images/icons/picture1.png
To: picture1.png
View 1 Replies
View Related
Apr 26, 2010
I have a form item that uses file browse. It is returning full path and file name.ie. Z:imagesMyfile.JPGI want to always strip off the path (whatever it is) and get the filename only.ie. Myfile.JPG.I had used code below, but it only worked in IE. It needs to work in all browsers. ?
<script>
function xtractFile(data){
var m = data.match(/(.*)[/\]([^/\]+.w+)$/);
[code]....
View 10 Replies
View Related
Jul 23, 2005
In a parametric code i have to select which js file to load
but, even if the path string composition is right, the js file is not
executed.
See below:
<head>
.......
<script type="text/javascript">
var gal_num=parent.scelta;
var
gal_par_path=gal_path[gal_num]+"gallery"+gal_num+"/g"+gal_num+"_par.js";
</script>
<script type="text/javascript" src=gal_par_path></script>
</head>
I have tested the gal_par_path in the body, it looks right!
On the contrary, the file is executed if, instead of the local variable
i write it entirely.
View 3 Replies
View Related
Sep 2, 2009
How to get full path from a file input field , i am getting only the image name using this code
<body>
<script type = "text/Javascript" >
function show_filename()
[code]....
View 1 Replies
View Related
Apr 6, 2011
[How to fetch filename with extension from file path? The file path is like this.(E:/videos/India.avi). I want to fetch only India.avi from file path.how to do it in javascript?/]
View 2 Replies
View Related
Dec 13, 2011
I have a relative path issue when using jQuery in that I am using the same ajax function sitewide and I don't know how I can send a request to a PHP file without needing to provide the full absolute path. For example, the below code works at top level, but will not work if called from inside a sub folder.
[Code]...
View 1 Replies
View Related
Feb 4, 2009
I'm posting this here because I think JavaScript is probably the only way to do it, but if anyone can point me elsewhere, that's fine.
In a bespoke CMS (not a publicly accessible application), I need to let my user upload files that are beyond the server's file upload size for http. I can use PHP to do this via ftp, but to do so I need the full path to the source file, which I could then pass in a hidden field. However, the value of the file input field only returns the filename, not the full path. I understand that this is for security reasons, but is there any way round it?
I've tried jumping through all manner of hoops to try and select the text in the field - which does show the full path of the browsed file - in order to put it in the hidden field, but so far I've failed. And I must do this in FF3 for various reasons.
View 2 Replies
View Related
Feb 7, 2010
I am working with a activeX widget that has a method that produces an image which is saved to a users local machine. All the method requires is the path on the local machine. I need to obtain this path (hopefully utilizing a "save as" file dialog) and store its value to a variable so I can pass it to the method. It does work with an input type="file" but they are branded for file uploads an dit is a little misleading and confusing for the user.
example:
var path = $("#saveAsDialog").val();
activeXObj.saveScreenshot(path);
View 1 Replies
View Related
Sep 7, 2010
capturing just the file name rather than the entire path of the SRC on my input type="image". Basically when I hover over an image, the Default Image should change to the image being hovered on. Here is my code, can't quite get it to work. Sorry I'm very new to JavaScript
<html>
<head>
<script language = "Javascript">
function ChangeDefault(src)
{
//document.frmMain.DefaultImage.src = src <--Doesn't work at all
alert(src) //<---Displays the entire file path, want just file name
[Code]...
View 3 Replies
View Related
Jul 23, 2005
Is there a javascript variable that contains the path of the file from which
it ran?
Something like this....?
alert('My path=' + MyURLPath);
Is this possible?
View 4 Replies
View Related
Apr 26, 2005
Can I subtract the filename form the location.pathname ex:
Before = 'file:///c:/afolder/awebsite.html'
After = 'file:///c:/afolder/'
Or is there any other way to get the directory without the name of the file being veiwed?
View 1 Replies
View Related
Jun 30, 2006
i just wanted to retrieve path of a file residing on local client
system using javascript
View 5 Replies
View Related
Mar 21, 2011
I'm having an issue using .get and a callback. Basically, unlessI use a fully quantified path when I deploy my site the call doesn't work. When I'm developing on localhost, the site works fine. It's an ASP.NET MVC site. I'm fairly new to jQuery. If I replace the code with an absolute path, all seems fine. Obviously I'd rather use relative paths. I'd be grateful for any insight you could offer.
[Code]...
View 2 Replies
View Related
Oct 29, 2010
why my code not work, when I change path of xml?,
$.ajax({
type:"GET",
url:"testPathxml.xml",
dataType:"xml",
[Code]....
View 1 Replies
View Related
Mar 19, 2009
I can't figure out why I am not able to read the cookies sitewide, maybe it is the way I am setting the cookie but the cookie looks to be set correctly in the Firefox browser.
On the page that I set the cookie, it works. I can read the cookies I set on the same page as well.
If I move to another page to view the cookies it gives an undefined value when using the getCookie function.
IF the problem lies in the getCookie function, please explain the code a little to me so I can get an understanding what I missed.
Code:
View 1 Replies
View Related
Feb 17, 2009
I set the cookie with out the path. Is it OK to leave the path if you want the path to be "/"?
Code:
I see i firefox if I don't set the path , for path I get "/" ..Seems like default is "/" . Not sure if all browswe will set it to "/" by default?
View 1 Replies
View Related
Oct 7, 2009
I don't normally use Javascript apart from a few browser workarounds, but I have a requirement to set a country cookie and it was working when all my pages were in the same directory, but now that I've added subdirectories, it sets a new cookie for each directory instead of one sitewide.
Here's the code (which I edited from some found on the internet):
Then on the homepage links I use:
Then on the subdirectory pages, I have a reset button which allows you to return to the homepage and disable the redirect.
So I just need the path=/ to be added somewhere is that right? I tried changing the last line of the main code to:
View 4 Replies
View Related
Apr 16, 2007
1. I have some links that open with Javascript. The HTTP links work just fine, but I have one link that is supposed to open a picture in a new window. The picture is stored in the root/images folder. So it's supposed to be a relative path, but no matter what I do, I get an error page. (images/snailmail.jpg)
2. I have added a mouserollover funtion to change a small picture on the page. I am trying to add a second function to that function, to stop the scrollbar in the lower left corner as long as the mouse hovers over the picture. For the first picture, it works fine, but with the 2nd picture which allready has a mouseover function, I am not sure what to do.
View 3 Replies
View Related