Self-invoking Modules Error Out In IE6/7?
Oct 9, 2007
I have a grouping of private/public functions defined under a namespace like so:
var Effects = function() {
// private variables
var shades = new Array("#ff9", "#ffa", "#ffb", "#ffc", "#ffd", "#ffe", "#fff");
var blindInterval = 20;
var skipFactor = 19;
var highlightInterval = 200;
// private methods
var fade = function( id, idx ) {
//
};
var resize = function( id, queue ) {
//
}
};
var getHiddenHeight = function( id ) {
//
}
};
// public methods
return {
highlight : function( id, interval ) {
//
},
blind : function( el, skip, interval ) {
//
},
toggle : function( id ) {
//
},
zebra : function( id ) {
//
},
};
}();
From mozilla, I'm able to do what's expected by calling the functions like: 'table-1' )" but in IE6 and IE7 I get a "Effects is not defined" error. That's puzzling to me, since they're both defined through a var Effects = function(), and the function itself is self-invoking.
View 7 Replies
ADVERTISEMENT
Jun 25, 2009
I'm definitely not a coder, don't know very much about css, know nothing about Java Script.So that said, I'm trying to make the table row height smaller on a Joomla! site with Superfish menu module, and have managed to do that a bit, but not as much as I wanted to, (don't even know how I did it now!) but ended up with space between the H3 module header/title, and menu content items, and also at the end of each menu to the header of the next. Purpose in changing row height is to save 'real estate' so I have to close up these gaps. Plus it looks weird.[URL]...
View 3 Replies
View Related
Jul 16, 2010
I'm trying to use the JQuery Cycle modules opts.addSlide() for a lobby screen. I don't seem to be able to get it running. Does the slide show already have to have content for addSlide to work. Perhaps my noobish syntax is way off. No errors are thrown.
var LobbySign = LobbySign || {};
View 1 Replies
View Related
Mar 28, 2009
I have developed a new site in PHP.Its done using modules and call each page in index page :[URL]... But my client want a color change on the current page select. So how can I do it using JS ?
View 2 Replies
View Related
Jul 20, 2005
I'm trying to figure out how to invoke a method on an object given the
object and the method name. For example, here's a simple object with a
method:
function MyObj (pName, pDesc) {
this.name = pName;
this.desc = pDesc;
MyObj.prototype.foo = function() {
return this.name + " - " + this.desc;
}
}
and here is some sample code to manipulate it.
var o1 = new MyObj("nn", "dd");
var s1 = o1.foo();
The assignment to s1 invokes the foo method and gets back the string "nn -
dd" as expected. now I try to find the foo method by it's name:
var funcName = "foo";
var theFunc = o1[funcName];
var s2 = theFunc();
the assignment to s2 invokes the function OK, but not in the context of the
object. can someone tell me how to invoke a function as a method?
View 7 Replies
View Related
Jul 17, 2007
function agregar_row(){
for (i=0; i<10; i++){
row="row/" . i;
if (document.getElementById(row).style.display=='none'){
document.getElementById(row).style.display=''
i=11;
} }}
This function is intended to make visible a row, just one by each time the function is called. the way im invoking "(row)" is wrong, i think...
View 3 Replies
View Related
Jul 23, 2005
I want to make an animated gif that runs through one loop
and then stops. But I want to invoke it at random time
intervals...so, for instance, a tight head shot
of a person's face winks at the viewer once or twice per minute,
at unpredictable intervals.
I think I could figure out how to use rand() and setTimeout(...)
to create the random time intervals, but I'm not sure about
how to start the one-loop animated gif. Would I have to reload
the whole page? Or is there someway to restart the gif animation
*without* reloading the whole page?....probably not, the more I
think about it.
View 2 Replies
View Related
Jul 20, 2005
I'm trying to call/ mimic an onchange function/ event after a user has
clicked a checkbox. In response to which a buncch of other ones need to be
checked as well.
The caveat is that each of those child-checkboxes need to have an onchange
action take place. All of these child-boxes *have* got a working onchange
eventListener attached (thx to an old post of Lasse Reichstein Nielsen).
Following a snip that suggests (or so the debugger suggests) that the
inputElement.onchange is void, so calling onchange becomes a bit hard.
Any suggestions?
.....
inputElement = _row2checkbox[tb.rows[i]["id"]];
inputElement["checked"] = el["checked"];
if (inputElement.onchange) {
inputElement.onchange();
}
.....
I did come up with a work-around but that ivolves some serious trickery.
View 2 Replies
View Related
Jun 14, 2010
$("#test").droppable({
tolerance:'touch',
drop: function() {
[code]....
The above code works fine at Firefox and Google Chrome. And it works at IE 8 for the first drop action. The ajax method is not called after the first call although the append still works.
View 1 Replies
View Related
Jul 23, 2005
I have a number of image files that have been pre-selected by the user
for downloading. I'd like to be able to have the user click a button
and have a directory browser pop-up window available for the user to
select the directory into which the image files will be downloaded.
I thought that this would be simple to find but...
If this is possible I further need to know:
1) how to access the directory path string (which will be used to
download the files)
2) how to set any available default values for the directory bvrowser.
View 6 Replies
View Related
Feb 4, 2011
I'm just getting started and I went over the initial tutorial. I created an HTML page like this:
<!DOCTYPE html>
<html lang="en">
<head>
[code]....
View 6 Replies
View Related
Jun 3, 2010
:)Per JMRKER's suggestion I researched Query Strings and partially solved my original request on how to pass a parameter. Now I need to learn how after passing that parameter, how to invoke some code.In an html file I call the program listed below entitled "ShirleyLee.html". The call is initiated by the following statement: onclick="window.open('ShirleyLee.html?Player=WindowsMediaPlayer'"In the body of ShirleyLee.html I call a function in the <head> entitled "DeterminePlayer". This function will parce the url used to open ShirleyLee.html.I tested this code and it works. In the Javascript code located in the <body>, the If clause: "if (SplitQueryStringStoreInArray[1] == "WindowsMediaPlayer")" will trigger the Alert box which will then display "WindowsMediaPlayer" which was parced from the url in the DeterminePlayer function located in the <head>If you look further down, just below the function call in the <body> you will see 11 lines of code which is a table that is comprised of the code neccessary to utilize the Windows Media Player plus parameters.
My question is, how do I invoke this code in the true area of the conditional clause located in the <body> that now temporarily contains: "alert("Player = " + SplitQueryStringStoreInArray[1]);"The following is the file: "ShirleyLee.html"
<html>
<head>
<script language="javascript1.2" type="text/javascript">
[code]....
View 10 Replies
View Related
Jan 19, 2011
currently we are having a scenario wherein in a JSP page we invoke the Microsoft Outlook client (open the Outlook client) using ActiveX api.. This we are doing using a java Script function which is called when the JSP page gets loaded. The body of the email is pre populated in a HTML format when the Outlook client opens up.Now we have a requirement wherein we need to open up the Lotus Notes client in a similar way ..Could someone please advise/help how this could be achieved ..whether there are some standard api's which could be used here.
2. Also in case there are 10 users who are using microsoft outlook as their email client while the other 10 users are using lotus notes for emailing..then in this case how could this be handled..
View 1 Replies
View Related
Dec 14, 2010
Inside client control I generate a button, with script to run.I want to call object's Print() method when this button is clicked, the result value must be passed to Print() as well.How can I do that?This is my object:
Type.registerNamespace("CustomControls");
CustomControls.FirstObj = function(element) {
CustomControls.FirstObj.initializeBase(this, [element]);[code]....
View 1 Replies
View Related
Jul 25, 2011
I think the last thing people seem to learn about in JavaScript when they're not coming from other programming languages is variable scope. Some even get all the way into AJAX without having learned about scope, and this is a time when it's really needed. Although the scope of JavaScript variables is non-complex by nature, it's something we should all get a full understanding for before we move too far.
Section 1: What is "scope"?
Section 2: The "var" keyword
Section 3: The "this" keyword
Section 4: Closures or "Anonymous functions and self-invoking closures
View 5 Replies
View Related
Mar 16, 2010
I have a text field on my page, whose value I am setting through the jQuery cal
$('#Expandable').val("fefefe");
However, when I normally type into the text field, certain events occur as the text field value changes. These events do not occur when I set the value like above. So my question is, after I set the value, how do I invoke any onChange handlers?
View 1 Replies
View Related
Feb 1, 2010
I'd like to know if it's possible to invoke associated onChange action of check box when changing it's state with another javascript command... ie.
<input type="checkbox" name="y" onChange="javascript: func('var');">
document.x.y.field[i].checked = true;
When I execute last line I'd like func('var') to be run as well. Unfortunately it doesn't happen as of in the example above.
View 2 Replies
View Related
Mar 10, 2011
Actually it has been just 3 months i started using JQuery and its whole lot exciting with the things we can do using jquery. Is it possible to call a javascript function inside aaspx page created in sharepoint designer on a daily basis automatically .
View 1 Replies
View Related
May 29, 2009
I'm trying to convert a Thickbox iframe setup to a jqModal div. While I can load content into a jqModal dialog. I run into a problem trying to explicitly close the dialog. Per Firebug:
[Code]...
View 1 Replies
View Related
Sep 16, 2009
I have a form that is repeated through out the page by the backend, which I have no control over.
<form action="">
<textarea class="your_comment" rows="10" cols="70">
View 2 Replies
View Related
Jun 19, 2009
My very simple function clickEvent1() (defined in the page head) that expands/shrinks a hidden tag <h6> with text, id="lignep" in the body
Here is a code which throws error for line 104 in the page body with message "Object expected", but I can't figure out what is wrong in this line that calls for function clickEvent1():
<h6 id="ligne"; onClick="clickEvent1()"; style="font-size: 12pt; line-height: 130%">
Here the page with Javascript in the title:
<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:offic... xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
[Code]....
View 2 Replies
View Related
Oct 22, 2009
IM NEW AT THIS AND I'M WORKING ON MY FIRST WEBSITE. I USED iWED AND I DON'T UNDERSTAND WHY IT WON'T WORK. WHENEVER I TRY TO OPEN IT IT SAYS: Parse error: syntax error, unexpected T_STRING in /home/a2460084/public_html/beto/index.html on line 1
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">[code].....
View 3 Replies
View Related
Aug 10, 2009
I'm new to jQuery and the validation plugin, I just wondered if it is possible to get the error messages to be shown in an error summary section instead of inline?
View 1 Replies
View Related
Jul 18, 2009
I am developing a web page . For this i am using Javascript embedded in html. In the application ,the user can input data via interfaces in the page which is chosen and read from a master xml file , the chosen data then needs to be stored and saved in a xml file.I have designed the web page in FrontPage.
Now the problem i face is while trying to save the output xml file i get error Permission Denied , error code 0 . This happens when i try to open the page in browser IE 6.0 SP2.I am using DOM parser methods for doing the xml manipulations/savings etc.urprisingly this works in another machine.Also can i use the all of the same javascript code if i want to run it in an IIS. Do i have to do some changes to make it server side javascript code.
View 4 Replies
View Related
Jul 26, 2010
Trying to use a small bit of script to slide open and closed a div.
Copied it from another page where I have it working just fine. Coding in coldfusion.
When clicked, nothing happens, and firebug pulls an error of DC_ShowDeptStaff is undefined.
Script is:
Code:
Call is:
Code:
Full code is:
Code:
View 5 Replies
View Related
Oct 19, 2010
I am working on a simple javascript craps game program. I need some advice since it won't display who the winner is, keep tally of who wins/loses, and the number of total games played. After using the error console there's an error with document.forms [0].thrower.value not being defined.
<html>
<head>
<title> JavaScript Craps Game</title>[code]....
View 13 Replies
View Related