Modified To Allow For 2 Instances?

Oct 7, 2010

I am using this photo shuffler code, located here: [URL] How can that be modified to allow for 2 instances? Basically, it would have 2 sets of arrays. I want to have 2 slide shows on the same page. I've tried modifying it myself for a few hours, and no luck.

View 4 Replies


ADVERTISEMENT

Dump Of Modified DOM ?

Dec 27, 2006

Is there a script I can get or a means where after a javascript program has altered the html in the DOM it can be printed out to some text window ? This might help me analyze complex programs to figure out what they did to the html.

View 1 Replies View Related

Using DOM To Get At The Contents Of A Modified Frame

Nov 19, 2003

The application that I am trying to develop is a web-crawler written in JavaScript. The top module called JSBrowse.html defines two frames: an upper one called toppart, and a lower one called bottompart. Toppart.html in turn defines two frames: one called leftpart and one called rightpart. (I would have atached all 4 modules, but I don't know how to attach more than one module, so I chose rightpart.html.)

Leftpart shows the current www page that you have crawled to.

Rightpart contains a button that takes you to the next page in what will eventually be a pushdown list.

Bottompart scans each page for the presence of keyword, and also shows the dom structure of the document.

In rightpart I use this statement to update the URL of leftpart: parent.frames('leftpart').window.document.URL=document.form1.text1.value;

THE PROBLEM IS: The DOM tree that is displayed is the tree of my original html page (i.e., leftpart). What I want is the DOM tree of the current content.

I own 5 books on JavaScript including "HTML Black Book", "JavaScript: The Complete Reference", and 3 others, and I have not found the answer to my question.

I could sure use a clue, or ideas to solve this problem.

View 3 Replies View Related

Show When A Page Was Last Modified?

Jan 23, 2001

What's the javascript to show when a page was last modified?

View 2 Replies View Related

Function Modified To Fullscreen

Jun 8, 2007

I am using this code I got from a friend of mine but I wish to chnage the dimensions of the page to Fullscreen.

Code:

<script>
var win = null;
function popup(mypage)
{
w=800
h=800
mypage="images/screenshots/"+mypage+".swf"
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=yes'
win = window.open(mypage,"popup",settings)
}
</script>

View 4 Replies View Related

How Do I Format The Last-Modified Date With Javascript?

May 7, 2007

Apparently, ` new Date() ` reads it correctly, though problems
can occur if the browser returns only two digits for the year.
In particular, time zone, field order and separators may vary.
It is also reliant on the server's clock having been correctly
set at the time of upload. See the URL below.

View 1 Replies View Related

Submit Form Does Not Include Modified Fields

Jun 29, 2010

I have created a web page loaded from MySQL and PHP.It contains a text field, two list boxes and a hidden field for items moved between the list boxes.When I submit the form it send the text field and the last list box item moved but NOT the hidden text field

View 7 Replies View Related

Reload Page If File Was Modified Using Javascript

Nov 16, 2004

Basically, I want a page to load, and then every 5 seconds be able to check a file to see if it has been modified since the last time the page loaded. If it has refresh, if not then wait 5 more seconds. Is this possible using javascript?

View 3 Replies View Related

Simple Cookie To Load Modified Page

Sep 22, 2005

I'm searching for a pre-made cookie script or a tutorial on making a simple session cookie. Just a cookie to make sure users are getting most current copies of HTML pages on my site.

Up till now I've just had messages on each page instructing them to refresh to make sure the have the latest version.

View 5 Replies View Related

Displaying An Image Dependent On When Another HTML Document Is Modified

Oct 9, 2005

I have a site that is built with a frameset. What I would like to do is whenever I update a particular frame that contains the main content (ie. a news.html page), have it change a graphic in the navigation bar (ie. a separate .html document) to a glowing animated gif for 7 days. Since the news page doesn't load as the first page within the frameset, it would show that there was something new posted there.

I have a few JavaScript books around, and I -think- I know roughly what needs to be done, but I'm having trouble conjugating scripts.

I think it could be done by checking the date.lastModified against the current date, and if the abs difference was less than 7 days it would display news-anim.gif, else it would display news.gif - however I am not sure how to get the left navframe.html to read the date modified of news.html

Can anyone suggest any solutions (or know of any scripts out there?) or is this more of an issue that should be dealt with using cookies/something else?

View 13 Replies View Related

JQuery :: Modified Superfish Vertical Menus So The Flyout Is To The LEFT?

Oct 26, 2009

Has anyone modified Superfish vertical menus so the flyout is to the LEFT? How?

View 1 Replies View Related

PHP Interferes With LastModified Function - Shows The Date A Page Was Last Modified

Oct 6, 2009

I have found a useful script at [URL] which shows the date a page was last modified. I have put it at [URL] where it works perfectly. But the same script with a PHP file extension as here [URL] only shows the current time. There is no PHP in the page, but somehow the PHP processor seems to be upsetting it.

View 1 Replies View Related

Javascript Function To Save The Modified Page Into Local Hard Disk...

Nov 13, 2002

I use NETSCAPE established a catalog page in XML, which uses Javascript-DOM to add, remove and sort the products by their prices. But which Javascript function should I use in order to save the modified page into local hard disk? to sort products as well.

View 1 Replies View Related

Several Instances Of The Same Function

Sep 19, 2007

I'm struggling on a JS function to generate calendars. It works fine until I have more than one instance. Then, when I change the month in the first instance, it's the 2nd one which makes the change. I don't understand very well how I should build my function.

Can you tell me what I have to do in order to get the methods applied to the right instance? Here after is a brief extract from the way I built my function (I spare you the 500 lines).

function calendar(FieldId)
{
var me = this;
me.SelectedDays = Array();
//etc

GoNextMonth = function(){
//blabla
}
me.NextMonthButton = document.createElement('div');
me.NextMonthButton.onclick=GoNextMonth();
}
PS: I use the word 'instance' but my function is not a class, I call it using calendar('test'), not new calendar('test')).

View 4 Replies View Related

Way To Remove Instances

Dec 16, 2009

I am using this script that gets messed up when you resize the window. I figured out that I could use this other script to do stuff just after the window gets resized. [code]...

View 1 Replies View Related

Multiple Instances Of FancyUpload?

Aug 17, 2009

There is this nice upload ajax script which I would like to use on my site, it's called "Fancy Upload". You can a see demo&code here:[URL]The demo shows only one upload form instance on the page. However I want to have three upload form instances so that the users can upload three pictures and see the thumbnails for each image they upload.The problem is, this javascript specifically sets the id's of the html fields in use. For instance, "demo-portrait" is the id of the image tag and it is also referred to within the javascript itself. So if I create another image field with an id "demo-portrait-2", the script wouldn't work for this second field.

View 5 Replies View Related

Cannot Get The Value Of The Specific Ckeditor Instances

Oct 26, 2010

I have a cms page that uses multiple instances of ckeditor. In the previous version of this cms we used FCKeditor. The problem is that we cannot get the value of the specific ckeditor instances. The ckeditor documentation says that I can get the value of an instance like this: CKEDITOR.instances.editor1.getData() This assumes that my ckeditor instance is associated with a form field called "editor1". My question is, how do I modify the code so that "editor1" is a variable?

View 2 Replies View Related

Multiple Instances Of XMLHttpRequest

Jul 8, 2007

I got a good book, and there are a lot of examples.

however, the author don't really explain how to use XMLHttpRequest in a real application, where the user will do several things at the same time.

my question is: for each request, you have to create a separate XMLHttpRequest, right?

because on the book they showed this code:


var xmlHttp;

function createXMLHttpRequest() {

if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}

else if (window.ActiveXObject) {
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}

} // function createXMLHttpRequest
and this is fine if on the page there is only one request, as they create a global var XMLHttpRequest.

However, I thought that it could happen that there are many requests at once (like if the user, while it's waiting for the first request to be completed, continues doing stuff, starting another request).

So, I changed it to this:


Code:
function createXMLHttpRequest() {

var xmlHttp;

if (window.XMLHttpRequest) {
xmlHttp = new XMLHttpRequest();
}

else if (window.ActiveXObject) {
xmlHttp = new ActiveXObject('Microsoft.XMLHTTP');
}

return xmlHttp;

} // function createXMLHttpRequest
and for each call I do:


Code:
var xmlHttp1 = createXMLHttpRequest();
var xmlHttp2 = createXMLHttpRequest();
// etc...

is this the right way to go?

View 2 Replies View Related

SetAttribute Multiple Instances

Nov 18, 2007

I know there is a problem with IE (I wont bother inserting a witty comment here) on handling:

setAttribute('onclick','doStuff');

I have found

yourAnchor.onclick = function() {
// do what you want in here.
}

this works, but I the script I am working on is going through every DIV with a certain class and adding links to the div, I want the button to change something within the div where it is located so I need to pass the id of the parent div. I thought perhaps there was someway to find the id of the button pressed?

View 5 Replies View Related

Multiple Instances Of A Slideshow?

Jul 11, 2010

This link below is of a slideshow [URL]Is it possible to have multiple instances of it in a page. I wish to have 4 of them, one below the other. I have no knowledge in javascript but tried making some changes.

View 2 Replies View Related

Replace All Instances Within Page?

Oct 15, 2011

I'm trying to find a script that will replace all instances of HTML code within a page.[code]...

View 4 Replies View Related

JQuery :: Multiply The Instances Of Script?

Jan 21, 2011

i've found this really nice fading ticker script by Alex Francois and i'ld like to use it as a bbcode on my forum. the only problem is that only the first instance of it works, so i think all i need to do edit the script so it uses a unique ID every time its run. how can i do this?

[Code]...

View 3 Replies View Related

JQuery :: Replace All Instances Of The String?

Jul 27, 2010

i have phone number on the page. Let's say 0208 123 45678 and i want to replace it with 0207 123 9999. Thing is, phone number is not in one type of tag, id or class.All i can tell you, it is somewhere throughout the body tag.

View 1 Replies View Related

JQuery :: Replace All Instances Of Select With Its Value

Aug 20, 2009

Is it possible to run through an entire table and replace all instances of select with it's value instead?

View 1 Replies View Related

JQuery :: Multiple Instances Of A Function?

Jul 31, 2009

I have a simple navigation menu. On hover, the block element changes background color. I'm also fading in/out a div layer. I'm also using the jQuery Color Animations plugin. Very simple to accomplish and I had no trouble doing so.However, I don't want to have to use a whole new function for each individual element, so I wrote the following:

$("div[id^=div]").css('display','none');
$("a[id^=a-nav]").hover(function() {
var tabSelected = $(this).attr("id");

[code]....

View 1 Replies View Related

Create Multiple Instances Using JS Dynamically?

Oct 27, 2009

I have written a code below:

Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "(URL address blocked: See forum rules)">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>

[Code]...

Basically, what I want to do is to dynamically create 5 instances of "emailRow" onto the web page making use of Javascript DOM. But have no success in getting it to work.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved