Using the search box in plugins to find a file uploader. File, upload, uploader, file upload, file uploader all return zero results. This seems a bit weird, what else can you call the thing? Are there really no uploaders in the repository?
I cant seem to be able to write to a text file called users.txt Here is my code:
<html> <head> <script language="javascript"> function rf() { var fs,file; [Code]....
What I do is I put the code in notepad, I then save it as a .html file and try run it in IE 7, google chrome and firefox, Each time users.txt is unchanged.
My professor asked us to make a webpage that has a user register and login in via a xml document. We can omly use html, javascrip and css.I made a function that loads users from an xml file and authenticates them. It works only on firefox and not IE. This is a problem because i am using ActiveXobject to write to the file.Here is my function that loads xml:
I am trying to create a way for my users to download some code dynamically from my web page via a file download. Below is the code that i have written so far. It seems to be dying on the iframe but i'm not sure why.
Here is my jquery trigger which is inside my onreadystate function.
I'm having an issue in Internet Explorer to where the javascript i'm using isn't working now. In firefox it works great!
Code:
<script src="::URL::/jscript/php.js" type="text/javascript"></script> <script language="Javascript"> function gup( name ) { name = name.replace(/[[]/,"\[").replace(/[]]/,"\]");
I want to validate an imdb URL and an keywords field who contain minimum 3 words separated by comma. This script valdate any url, but I want to validate url like this: [uRL] var urlRegex = /http://[A-Za-z0-9.-]{3,}.[A-Za-z]{3}/; if(url == "") { inlineMsg('url','<strong>Error</strong><br />You must enter an URL.',2); return false; } if(!url.match(urlRegex)) { inlineMsg('url','<strong>Error</strong><br />You have entered an invalid url.',2); return false; }
I've Googled this without success. I have a webpage with an iframe which is on my same server. My parent page is a form which posts to the iframe page. The iframe page is a shell script that is used to telnet to routers and process commands and display the commands and responses.
I need to have a highlight text option on the parent page for what is displayed in the iframe. Is this possible to do this with Javascript and if so, can you share that with me?
I need to compare a form input which has called the referrers Keywords with another DIV text content.If the content is the same then this DIV would come to the top. Till now I have tried the following, where the call referrers keywords is ok, but the comparison fails:
I'd like to find certain keywords in the text of an html page and give it an underline and the ability to show a tooltip when hovered. When I try to use .text() on the top-level element, it just spits everything out, including javascript, etc. How can I go through line-by-line and do a word comparison with the keyword I'd like highlighted? I'm thinking of basically doing: $(#toplevel).each(function () { if ($(this).text() == 'keyword') $(this).contents().filter(return this.nodeType == 3).wrap('<a></a>'); If that makes any sense.
We have site that has autolinking of keywords (~150), each going to a specific page in the site. On a forum page with 300+ posts (all on one page) the php script takes too long and errors with max execution time exceeded. (the owner want it all on one page, and there are also anchor links somewhere else directly to the posts)
Now I have tested jQuery with viewport plugin to see if I can only autolink the table-rows that are visible in the screen only. (if I run the function on the whole page the script becomes unresponsive) It works fine on page load, but when I run it in a loop to update every 5 sec the already matched keywords just disappear! I have tried the scrollstop plugin as well, but made the scroll unresponsive
var map = { 'test':'/test/test.php?id=2','test':'/test/test.php?id=2'}//these are in prod about 150 key-value pairs (function( $ ){ $.fn.autolink = function (theProfName,theProfUrl) {
Our company own a lot of domains and want to put a short page of copy on each address along with keywords before redirecting the user to our main site. I have been able to get the page to load the main site after the desired time using this code in the head...
That works perfectly, I am now trying to display a countdown timer from 40 seconds down to 0, and on 0 redirect the user. Saying something like "You will be redirected in XX seconds". Is there anyway of doing this? I've been searching google for the answers with no luck and can only seem to find timers that countdown to a set date.
What am I doing wrong here. I'm trying to generate this code into my listOfSquares UL using javascript: <a href="#" id="square0"><li class="square"></li></a> This is my complete code:
Im having a problem with the jquery .append in IE8.
Im displaying a model screen of a div section that has been built with the .append method.
The modal works fine in FF and Chrome, but AS USUAL, IE is not working correctly. The data is not being appended to the div. When I put in in IE in IE8 mode it works fine.
I have a basic text input field that is validated with jquery.
I've created a function to append to a url once the user has input an ID into the text field.
However, when I use the window.open method, a new window opens, and when I use window.location, the user ID is appended to the current url and not the url defined in the function.
Here is the function:
Here is the markup:
When a user clicks on the 'submit' button without entering anything into the text field, a new window opens (I know, the function uses the window.open), when I close the new window - the jquery works, a label saying 'this field is required' appears.
When a user inputs an ID, and then clicks on the 'submit' button, a new window opens with the correct appended url.
What I need to have happen is - if the text field is empty and the user clicks on the 'submit' button - I don't want the function to run.
When I switch window.open to window.location, then when the user inputs an ID into the text field, that ID is appended to the CURRENT url and not the url specified in the function. I don't have the luxury of server side scripting.
End result: I want to have buttons along the top of a textarea which will be used to add tags around highlighted text / the text curser thingy. (Basically it will be an edit box like the I am using now to make this post).
Problem at the moment: I want to reference the var to use in the function. e.g.
function addtext(id) { var al = "<div style="text-align:left;"></div>"; document.myform.outputtext.value += id; }
"id" will be defined as "al" in the HTML onclick function, I want this to use "var al" where it says ".value += id;".
HTML:
<form name="myform"> <textarea name="inputtext">Type Here
I want to append the content of an already defined "old div" tag to the "new div" tag dynamically but how to do this. The code i tried is attached below. how to remove that appended div tag dynamically?
<html> <head> <script type="text/javascript"> function add() {
I have an AJAX function in jquery that sends information and displays it on the spot for you. The problem is when I append the message it appends it on top of the other DIVs.
So basically this is the structure of DIVs:
When I hit submit it puts the hidden DIV over DIV1 so the results is like this:
I need it to be under DIV3 so that it logically makes sense to the user. Like so:
I'm writing a reusable JavaScript library which needs to set certain styles in a document. The document may have an existing stylesheet definition either by a link or by an existing stylesheet declaration in the documents head section.
How can I use JavaScript to append my own style sheet information to a possibly already existing stylesheet definition?
What is the proper way to .append to an element that has been appended? I'm creating a unordered list via jQuery and attempting to append list elements to said list but those elements, loaded from an XML file, duplicate themselves when I do this.
When I append those list elements to an html element that is hard coded into my html file, this does not happen.
I'm sure the answer to this question has to do with iterating over each element in the wrapped set, but I still don't understand why. I have a number of anchors in my page that have a class named Get.I want to append a querystring name value pair to the end of each href.
$( '.Get').attr('href').append('&id=' + id); does not work. Can someone tell me why and what is the correct solution.
'm trying to use jQuery to append to the onchange event of each of the following input elements. The following code actually replaces the event. When the onchange event fires on any of the elements, I get one alert which just says "new". What I would like to see is 2 alerts, one that says "test?" where ? is the element that changed and another that says "new".
as an example,when you enter in a username, a static string of "Your [URL]has the USERNAME replaced with what you are typing in.This is day one of JQ for me. I was looking at the onkeyup event in JS in general, but I figure it is time for me to learn JQ.I am pretty sure I am going to
<script type="text/javascript"> $(document).ready(function(){ // something fancy here