JQuery :: Importing In Other Js File
Nov 17, 2011
I will need to import jquery through flash, but I'm not the owner of the site, so I can't alter the code permanently, I'll have to do it "on the fly"
I wanted to add a child to the head element but I don't manage to do it!here is the code I'm doing as a test.[url] (jquery and the html page are in the same folder)
If instead of the jquery js I import any other js created by me with, e.g. an alert, this works. Why not with the jquery file?
View 5 Replies
ADVERTISEMENT
Feb 11, 2003
OK, this little code takes a string (URL) input and returns an array ([fileContents,httpHeaders]).
function getFile(n){
var file; // Define variable
if(n==''||n==self.location)return []; // Don't request self or empty strings (Safety meassure for some IE and pre0.9.9 Moz versions)
switch(typeof ActiveXObject){
case 'function': // Chech if ie
file=new ActiveXObject('Microsoft.XMLHTTP'); // If so use ie XHreq
break;
default:
file=new XMLHttpRequest; // Otherwise use moz XHreq
file.overrideMimeType("text/xml"); // And override content-type to avoid breakage
}
try{// Error susceptible code (Moz may screw up, especially if you're breaking the security rules)
f.open('GET',n,false);// Open connection
f.send('')// Send empty string
}catch(e){// If error
return []// ...return empty null-length array
}
return [f.responseText,f.getAllResponseHeaders()]// Otherwise return response and http headers
}
Note that the file must be within the current domain, or only ie5.5win will actually be able to fetch it....
View 4 Replies
View Related
Feb 1, 2010
I have a function on my site where it imports links from from a text file and automatically changes the links around and inserts them into the database, filling up the necessary fields in the database.
I would like .zip to be taken off the end of each link where there is .zip at the end of the links.
Here is an example:
Will end up as:
Yamaha YFZ - 450 1999 Service Repair Manual.zip (This is due to the code replacing _ with a space and inserting a space when it goes from lowercase to higher. There are more rules this is just used as a example)
What I need is for the .zip to be removed, e.g: Yamaha YFZ - 450 1999 Service Repair Manual
Check out the code below:
View 2 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
Jul 23, 2005
Is there a way to 'include' javascript at runtime? I'm targeting most recent browsers in general, but at worst I'm looking for IE/Moz solutions.
View 2 Replies
View Related
Mar 28, 2006
I have the usual javascript include in my html file:
<script type="text/javascript" src="standard.js"></script>
Now within the file standard.js I would like to put another 'script tag', i.e. in standard.js we would have the line
<script type="text/javascript" src="another.js"></script>
Obviously, this is not the way to do it, but what is?
View 2 Replies
View Related
Jul 23, 2005
I am currently creating part of a system which does a simple import of
a CSV file using SQL Server with DTS. The front end to this is a web
based .NET (C#) app. Obviously when the CSV file is large, there is a
delay for the user receiving any feedback from the system. I therefore
want to do what I have seen other systems do and display a gif image to
show the user that something is happening (eg. spinning images etc).
View 1 Replies
View Related
Jan 5, 2010
An application under development has a set of core functions that carry out common tasks and a 'machine' that animates panels of lists of names and menus and provides another panel for action calls. (see attached pic). Selection of a name identifies object(s) to be worked on and menu couplets like "Name+Edit" call devices (each in a separate js file).
Each js file replaces any files in the deviceScript holder in the hta file. I used to use eval(couplet+"Start")() to initiate the device, but having read about the evils of eval it dawned on me that it was unnecessary and just gave each device a start() function ... and also an optional refresh(), and compulsory finish() to pick up results and clean up.This seems to work well on my machine. The hta is intended to run locally picking up json type data and devices locally and via the net.
View 9 Replies
View Related
Jul 13, 2009
I am still new to jQuery and I am trying to figure something out. I have this code:
[Code]...
This is working fine on itself. What is does is when I click a link it loads data into the following div. When done loading it slides out. But I want to change the appearance of the slide. I have tried to do that like this: $(this).show("slide", { direction: "down" }, 1000); But this doesn't work. When I check firebug it says the following: o.easing[this.options.easing || (o.easing.swing ? "swing" : "linear")] is not a function
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
Apr 20, 2010
is there a way to assign an event to a file input so that when a user selects a file to upload the event is triggered and i can check out the file extension? The reason why is simple, i want to perform different actions depending on the type of the file.
View 2 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
Mar 20, 2010
I wanna send a file thru the JQuery.load, I want it to work exactly like the regular post without the JQuery. So I can check the $_FILES['file']['error'] in PHP and all its features like I do without using JQuery.
$("#load").load('gerenciar_itens.php',{/* This is where I wanna pass the file. */}, function(data){
alert(data);
});
View 2 Replies
View Related
Jun 6, 2011
I have a problem with the latest version of the jQuery Form Plugin (2.80). To be more precise, I guess I am doing something wrong, and with an older version (2.67) somehow it didn't matter.With the old version, the file was uploaded without problems. Now Firefox opens a new Tab on clicking the submit button and nothing is done. Chrome doesn't open a new tab, but also nothing happens. In Wireshark I can see that there is no file attached in the POST message with the older version, the file was sent.My first guess was that my file handling on the server side is erroneous - but on the other hand, when there is no file attached, what should I handle there?
View 2 Replies
View Related
Jun 2, 2011
I am using jquery Multifile upload plugin, I want to show the client a pop messages if he/she crosses certain size while uploading files..
<html>
<head>
<script src="/js/jquery.MultiFile.js" type="text/javascript" language="javascript" target="upload_target"></script>
<script>
[code]....
View 3 Replies
View Related
Dec 24, 2011
If I switch the w3schools' file with the same local file, it will not work with firefox.Does anybody know why the local file is not displayed correctly?
~/linux/test/jQuery/ajax$ cat main1.html
<html>
<head>
[code]....
View 2 Replies
View Related
Nov 29, 2011
I've got a major headache with IE in that I have a support form that allows users to submit tickets with files which is then emailed off.
Using javascript, jQuery and PHP I have everything under control with all of our favourite browsers - but then comes along IE.
support.php
...
<!-- file -->
<div class="fileUploadEntry">
[code]....
View 4 Replies
View Related
Apr 11, 2010
I'm working on this project where I'm trying to use jquery to read from an xml file and generate added code to a html index file by creating dropdown select menus and then allowing the user to display pictures according to what of the 2 category 'select' types they select on the dropdown list.
The program works as far as generating the select dropdown list but only generates the images for the first selected option. When I select the second drop down category nothing happens it simply shows the pics from the first category. When I go into firebug and display the html file after the script is run there are an extra set of <p> tags without anything in them. I traced through the script and can't find where the <p></p> is coming from. It's not on the initial html page. I have the script below for the xml and jq.
<?xml version="1.0" encoding="ISO-8859-1"?>
<gallery>
<picture class="House and Home">
<listing>Pics/HouseHome/h1.jpg</listing>
[Code]......
View 2 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
Oct 22, 2009
I need to get the filename, basename, dirname using jQuery. if there is any utility that will take care of windows/mac/linux file paths.
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
Oct 15, 2009
I am using modal dialog to select some check boxes and when I click on the button I need to call a php script file witch is generating an excel file based on the selected checkboxes.I am getting the checkboxes value but not able to call the php file.
View 1 Replies
View Related
Mar 18, 2011
how to put the jquery once file is selected, and not Cancel is selected.
Let's assume we have
<input name="title" type="text" value="- none -" size="33" maxlength="50">
<input name="filepath" type="file" size="33">
and at another portion of that page also have a similar repeated code as above.
I want to put some changes once the File is selected not when the button Browse is Pressed. Is there any work around?
View 2 Replies
View Related
Aug 15, 2011
I have a form with 3 text inputs; onclick I pass their values to another php file to process everything in that file without a refresh, it works fine, but in the same form I also have a input and I need to pass its value to that other file as well, does anybody know how to do it? This is what I have:
function processform(){
$.post('processnewpostForm.php',
{title: newpostform.titleInput.value,
[code]....
View 4 Replies
View Related
Feb 2, 2011
I've managed to implement the jQuery File Tree [URL] on my site. I am now trying to figure out how to add a function when one of the files is clicked (separate functions for different file types). On the link provided, it explains how to add function to files, but considering my lack of knowledge in Javascript and jQuery, I was wondering where in the code I should put the function. The example the gave was:
function openFile(file) {
// do something with file (For now
at least
[Code]....
View 1 Replies
View Related
May 10, 2011
May include jQuery statements in a file.js attached to php file? how? may in this file mix pure javascript code with pure jQuery statements?
View 1 Replies
View Related