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


ADVERTISEMENT

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 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

JQuery :: Remove() Doesn't Remove Html Tag And Text Inside

Dec 12, 2011

This time I have a trouble with remove(). Here is my code :

$.each(val.produitsIds,
function (j, val2) {
if($('#chk_' + i).prop("checked")){
//$('#' + val2).prepend("<div>liste des tailles</div>");
$('#' + val2).prepend("<div>" + $('#chk_' + i).attr("value") + "</div>");
}
[Code]...

View 2 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 :: Remove A Specific Box When Click On The Remove Button In That Box?

May 12, 2009

I want to remove a specific box when i click on the remove button in that box. I have a lot of boxes on a page but when i click on the remove btn it removes all the boxes. I just want to remove the box where i click on the delete btn.

This is the js code:
$(".del").click(function() {
$('div.floating-box').remove();
});

[Code].....

View 3 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

How To Create Multiple Instances Using JS Dynamically

Oct 29, 2009

I have written a code below:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript">
function emailRowContent(isSelected, emailAddress, severity)

[Code]...

View 11 Replies View Related

Multiple Instances - On A Single Page ?

Feb 11, 2010

I have this script which is set to generate random anagrams of my name in rotation which works fine, but I can't work out how to put multiple instances of it on one page.

The code is:

And i'm calling the function using:

View 3 Replies View Related

Consolidate Multiple Instances Of A Function

Apr 9, 2010

looking for a ways to consolidate multiple instances of a function... Here's the current one:

instance:

<div class="hex" onmouseover="onV('N03')">
<p id="Labbbab6">_ _</p>
<p id="Labbbab5">___</p>

[code]....

It could be done by changing the visibility of class"hN" from 'hidden' to 'visible'; and maybe it could be done by making class "hex" last-child visible.Whichever way, the function needs to be attached to the class.

View 5 Replies View Related

GetElementById Alternative For Multiple Instances?

Apr 23, 2010

The code works, but it obviously can't be used for more than one picture per page because getElementById finds the first div and always displays it onmouseover of any attempted mouseover text.The Javascript in <head> is

<script type="text/javascript">
// Pop up code begin
function ShowPopup(hoveritem)

[code]....

So the display code is

<a id="hoverover" style="cursor:default;" onMouseOver="ShowPopup(this);" onMouseOut="HidePopup();">text here</a>
<div id="hoverpopup" style="visibility:hidden; position:absolute;"><img src="url here"></div>

I just want to be able to have more than one instance on each page and still be able to declare the image url in the body and not within the javascript.

View 8 Replies View Related

Multiple Instances Of PhotoShuffler On Same Page?

Aug 20, 2010

I am using PhotoShuffler on my website for a slideshow. But, on my page, I want to have 2 slide shows going. But I can't seem to get it to work - I duplicated the JS code, and added the number "2" next to all the variables in the second file, to try and make it different, but it still will only fade one slide show, no both at the same time

View 5 Replies View Related

Passing Vars/multiple Instances?

Aug 27, 2010

I'm building a comment system modeled after Tumblr's, where each post will have it's own comments. I've modded a system from 9lessons and am having an issue implementing it for multiple instances on a page. Each post has its own ID, so I'm trying to set this up using the post's ID. It works fine for a single post, but when there's more than one on a page it doesn't work.

Code Javascript:
<html>
<head>

[code]....

View 3 Replies View Related

JQuery :: Multiple Instances Of A Slider?

Mar 25, 2011

I have added the Flowplayer jQuery scrollable slider to the web page linked below and I am trying to add more than one instance of the slider to that page. So essentially three galleries. Can someone figure out how to rewrite the jQuery function to accommodate the additional scrollable items on the page?

View 2 Replies View Related

Open 2 Instances Of A Lightwindow One From Within The Other (Nested)

Feb 17, 2009

I cannot find a specific lightwindow forum so if anybody here has used Lightwindow version 2. I am trying to open 2 instances of a lightwindow one from within the other; so 3 layers. form -> lightwindow -> lightwindow.

View 4 Replies View Related

Show Me How To Replace All Instances Of Word In Textbox

Dec 1, 2006

I have a textbox, and I want to search the contents of it and replace all instances of a certain word, and replace that word with something else. For the purposes of this it could be replacing "green" with "blue". Can someone please show me how to properly do this?

View 17 Replies View Related

JQuery :: Multiple Instances Of JTip Style?

Apr 6, 2011

ove the plug-in but have come across a puzzle. i am trying to use multiple (5-8) instances of the jTip theme, jTip Style clueTip. The first tip shows as expected using the code <a class="jt" href="health.html" rel="health.html">Health</a> However, the second tip shows the new ajax file but as soon as i move off of the word, the tooltip closes. i know this has something to do with the jt:eq() class, but i'm having no luck in changing it to make the second instance stay open on hovering.

[Code]...

View 2 Replies View Related







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