Config File + Class/Functions File - Variables Not Found?
Feb 13, 2010
I have a JavaScript config file called gameSetting.js which contains a bunch of variables which configures a particular game. I also have a shared JavaScript library which uses the variables in gameSetting.js, which I include like so:
<script type="text/javascript" src="gameSetting.js" ></script>
<script type="text/javascript" src="gameLibrary.js" ></script>
In gameSetting.js I have:
$(document).ready(function()
{
// call some functions / classes in gameLibrary.js
}
in Firefox, Safari, and Chrome, this works fine. However, in IE, when it's parsing gameSetting.js, it complains that the functions that live in gameLibrary.js aren't defined. When it gets to parsing gameLibrary.js, the variables in gameSetting.js are reported as not being defined. I've tried dynamically bootstrapping the gameLibrary file using this function in document.ready for dynamic load.
However, the same problem still happens in IE, where when it parses the files individually it's not taking into context the file/variables that came before, so it's not an out of load order problem.
My options are:
1) collapsing all the functions in gameLibrary.js and variables in gameSetting.js into one file. However, this is not practical because this is dealing with literally hundreds of games, and having a gameLibrary.js in ONE location for ONE update is what makes most logical sense.
2) figure out a way to get this to work where variables in file1 are accessible to file2 in IE (as it seems they are in other browsers).
jQuery seems to be able to have multiple plugins that all refer to the based jQuery-1.3.2.js, so I know there is a way to get this to work.
View 1 Replies
ADVERTISEMENT
Aug 4, 2010
[URL].. Does anyone have the 2.43 source?
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
Mar 28, 2003
Is javascript capable of file functions? such as fopen, fread, fwrite, fclose.
View 6 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 20, 2005
I have an html file with javascript functions in the <head> section that
work fine when called from events or instanced as objects.
When I move the functions to an external js file they don't work (timers
don't run).
What pitfalls are there in having "external" functions, is there a scope
problem like in c?
View 1 Replies
View Related
Mar 23, 2011
I am using this library [url]...
Now i have a doubt, how i can pass the variables $var and $var1 with ajax to a PHP file? to make sql querys and replace the values of $var and $var1[code]...
View 2 Replies
View Related
Dec 2, 2009
I used to have a traffic tracking script that used to work as follows:
Code:
<script type="text/javascript">
var tracking_image = new Image;
tracking_image.src = '/track.php' +
'?page=' + escape(document.location.href) +
'&referrer=' + escape(document.referrer);
</script>
This would interact with a PHP file which parsed this information and stored it in a database. However I just changed servers, and for some reason this JavaScript no longer works; don't know if it was because of the server move or what.
Is there any way to pass GET variables to an external javascript file? I would like to pass things like document.location.href and document.referrer to a PHP file. For instance something that would function like
Code:
<script src="/track.php?page=" + escape(document.location.href) + "&referrer=" + escape(document.referrer)>
</script>
Or alternatively, perhaps there is some other way for a PHP file to access JavaScript's document.location.href and document.referrer values (I'm using JavaScript to access this info rather than standalone PHP since spiders don't activate JS).
View 3 Replies
View Related
Jul 23, 2009
how run stop functions in time.php file?
<html>
<head>
<script type="text/javascript" src="jquery.js"></script>
<script>$(document).ready(function(){
[Code].....
View 1 Replies
View Related
Mar 12, 2009
I have 2 custom JQuery files..Now the sequence in the header of the HTML file is as follows1. Jquery Library2. File 13. File 2The problem im facing is that, file two is not recognizing functions created in file one... ex..
Code:
$(function() {
function say_hi() {
[code]....
View 2 Replies
View Related
Oct 9, 2010
I have a lot of things that are running on the $document.ready() area and was wondering if I can put them all into an external js file and call 1 function from the $(document).ready() call
here is what I have
Code:
<script type='text/javascript'>
$(document).ready(function(){
$(".editphrase").editable('index.php?m=language&a=changephrase', {
[code]....
I would just like to call 1 function from the $(document).ready() call that lies in an external .js file that will process the code above so I don't have so much clutter in the page. This is what I would like. I have tried it but it doesn't work.
Code:
$(document).ready(function(){
cms_init();
});
View 3 Replies
View Related
Jul 20, 2009
I have used AJAX lots before and I wondered if it was possible to set variables from an AJAX file E.g. an ajax file could set
var set1 = 10;
var set2 = 55;
with both variables coming from an external file called by AJAX. Which JS side perform the request and the format of the file that is requested.
View 4 Replies
View Related
Nov 15, 2009
I have a form called register.html and have javascript to check the form validation
<form
<input type="submit" value="Submit" onClick="return formValidate()">
</form>
so in register.html when user presses submit the formValidate method (javascript) is run.once it returns true, how do i pass the variables from the form into a php page?i know i can change onClick="data.php" but then the JS is not being run ...
View 4 Replies
View Related
Feb 18, 2010
Javascript is not recognising any of the hidden variables on this web form. It simply reports them to be null. I tried declaring a new variable without "runat=server". No luck.
<html>
When queried the value, it says "Object required" and when queried the variable, it says "null".
View 4 Replies
View Related
Jul 14, 2007
I need help getting variables in an external js file to transfer to the html page that uses them. I have an html page that lists verses to memorize, which, when the mouse hovers over a particular verse, a small popup reveals the book reference for that verse, thus giving a check to see if the user has accurately referenced that verse for its source.
I have an external js file (VERSES.js) that houses the verses and popup references sequentially as elements in an array and then writes them to the html document. A simplifed version of what I am using, with only a few verses listed here as an example, and that works beautifully, is given below: Code:
View 6 Replies
View Related
Apr 15, 2010
I am developing a script to work along side my joomla website and i am wanting to develop a script that connects to my database and refresh's certain divs every 2 seconds without the user noticing this,
only issue is that joomla isnt wanting to work with me on this,
Here is my code,
Code:
<script src="http://code.jquery.com/jquery-latest.js"></script>
$user =& JFactory::getUser();
if($user->username)
[Code]....
since when i do that i get nothing on my navagation where user information is displayed and displays the enter layout in the div right_contenta So can jquery does this.
How can i fix this and get my right_contenta div refreshing every 2 seconds with my joomla layout
in otherwords i want my ajax to load and refresh the information located at profile2.php?user=admin which has all user information coming fom database and refreshs every 2 second
View 2 Replies
View Related
Jan 27, 2011
I have several form in my site, that validate on onsubmit.I call all the validation functions from a file call functions.js.Here is a sample of the code that is working:
<form name="contact" action="contact-insert.php method="post" onSubmit="return checkform()">
<label class='SubHeadlbl' for='TextField1'><?php echo IDS_EFORMNAME?><br></label>
<input type='text' name='dfname' class='text_field' id='dfname1' size='70' maxlength='40'/>
</form>
all the other forms are not working. all have the same structure:
<form name="frm1000" action="frm1000-insert.php method="post" onSubmit="return checkform1000()">
<label class='SubHeadlbl' for='TextField1'><?php echo IDS_EFORMNAME?><br></label>
<input type='text' name='dfname' class='text_field' id='dfname1000' size='46' maxlength='40'/>
</form>
I don't know what is happening only one for work all the others don't.
View 10 Replies
View Related
May 6, 2009
I am trying to create an input element of type file using the javascript. I am able to create it but the problem i am facing is, i need to apply a CSS class to the control. Can some one let me know how to do the same.
I am pasting the code that i am using to create a control.
function AddUploadFile()
{
var newrow = document.getElementById("files_tbl").insertRow(document.getElementById("files_tbl").rows.length);
[Code].....
View 2 Replies
View Related
Jul 16, 2010
I'm writing a script and I've encountered a problem.. I have a txt file with many words, each word in a different line. For example: the file words.txt contains:
word1
word2
word3
word4
word5
I need to load the content of the file into a variable in my script. I prefer that all the words will be in the same variable with line breaks, but if you'll figure out a way to put it in an array, it's ok too. I really don't know how to do it, and I tried to google but didn't understand.. By the way, I don't want to change the txt file to js file, I need it to remain txt..
View 8 Replies
View Related
Sep 26, 2007
I got an [object error] from IE 7.0.5730.11 when moving the <script
src="..." type="text/javascript" /tag from the <headpart to the
<bodysection of a HTML file.
Is not possibile to include Javascript code via <script src="..."
type="text/javascript" /from the <bodysection, instead from the
<headone? If yes, anyone has any idea of which the problem could be?
If not, how can I programmatically include a javascript external file
inside the <bodypart of a HTML file, for example, using Javascript
to some particular native functions?
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