This.setHomePage Not Working In Mozilla

Aug 9, 2006

I have a link in my website(abc.com) called "Make Us your home page". Once a user clicks it the link of my website(abc.com) becomes the home page for the browser.
This works absolutely fine in IE, but does not work in mozilla. I get the following error in the console:

Error: this.setHomePage is not a function

The code i have used is as follows:

<a href="#" onClick="this.style.behavior='url(#default#homepage)' this.setHomePage('http://www.abc.com');">Make us your homepage</a>

I suppose that sethomepage function is not supported by mozilla, if that is so, then how do i achieve my objective in mozilla?

View 5 Replies


ADVERTISEMENT

JS Settimeout Is Not Working In Mozilla But Working In IE?

Sep 28, 2010

JS settimeout is not working in Mozilla but working in IE

View 3 Replies View Related

JS Calculator Not Working In Mozilla But Ok In IE

Feb 26, 2010

I have an online calculator in javascript which works in IE but not Moz.

site: [URL]

code:
function workit()
{
var xsource = new Array(0,0.09,0.1); // source language
var xtarget = new Array(0,0.09,0.10,0.12,0.14); // target language

[Code]....

View 4 Replies View Related

Working In Mozilla But Not In Other Browsers?

Jun 21, 2010

with the bellow code iam able to run the code without any problem in mozilla but not in other .

Code:
<html>
<body>
<script language="javascript">

[Code]....

View 1 Replies View Related

Onblur Not Working In Mozilla, Fine In IE

Jan 15, 2007

The php file is just an echo statement
now to simplify for the moment. If instead of calling the replace
function I've also tried putting in an alert function. Alert works,
the calling the php file does not.

Any suggestions greatly appreciated, I've never encountered such
difficult functionality as with javascript in firefox compared to IE.
Might just be my luck though... Code:

View 3 Replies View Related

Onchange Event Not Working In Mozilla 1.5.0.2

Aug 26, 2006

The onchange event is not working in Mozilla 1.5.0.2. Is this a Mozilla bug.

View 1 Replies View Related

Ajax Not Working In Mozilla Firefox?

Jun 9, 2010

I have tested following code and it works fine in IE but not Mozilla:

var ajax = false;
if (window.XMLHttpRequest) {
ajax = new XMLHttpRequest();
}

[Code]....

View 3 Replies View Related

Window.opener Not Working In Mozilla?

Nov 15, 2010

My parent window is dash.html. From this i call a pat.jsp file which is a child window to dash.html. I wrote a function in dash.html

function feed_refresh(){
getGlaceCompleteDashBoardResult(1);
}

this function getGlaceCompleteDashBoardResult(1); is included in a .js file in dash.html file. Now from the pat.jsp i call the feed_refresh() function on onunload=db_refreshfeed(); like this.

var db_refreshfeed = function(){
if(REQUEST_TYPE)
window.opener.feed_refresh();
}

This code working nice in IE but in mozilla it throws uncaught exception.

View 3 Replies View Related

Document.selection Not Working In Mozilla

Feb 18, 2010

Following code i modified to make it work in the firefox browser.

but its not working in firefox

if (document.selection)
{
var objRange = document.selection.createRange();
var sOldRange = objRange.text;

[Code]....

View 5 Replies View Related

SRC Parameter Not Working In Mozilla When Path Is Included

Jul 20, 2005

I normally use Mozilla 1.4 on Windows XP Pro.
As I was developing some test webpages, I discovered that the SRC
parameter doesn't seem to work when a path is used with the filename.

In one example, when I want to run a JavaScript from an external file
(i.e., not inline), I would do the following ...

<SCRIPT LANGUAGE="JavaScript" SRC="program.js"> </SCRIPT>

If "program.js" were in a different subdirectory than the .htm file
referring to it, the filename would have to be prefixed by the
pathname as follows ...

<SCRIPT LANGUAGE="JavaScript" SRC="/mydir/program.js"> </SCRIPT>

But when I ran the above from within an .htm file loaded locally into
Mozilla, it did not work. (The result was as if the above code weren't
there). However, when I ran the identical code on Internet Explorer
(v.6), it worked. Code:

View 13 Replies View Related

JQuery :: $.ajax And $.getJSON In Not Working In Mozilla?

Aug 27, 2009

I'm using $.getJSON to get data from WCF service in the form om json. this is working fine in IE7 but in mozilla it returns nothing. My code is

$.getJSON("http://localhost:3162/VirtualService/Settings.svc/
GetAllCountries",
function(data) {
alert(data);
});

this code returning me the list of countries in json format. so what to do in the case of mozilla..

View 1 Replies View Related

Caps Lock Script Not Working In Mozilla?

Oct 6, 2009

I am using one script which is functioning properly incase of IE but incase of Mozilla evenif the shift key is pressed and any character key is pressed then it is displaying Caps Lock is On. how can I make it Mozilla and IE compatible.

View 5 Replies View Related

JQuery :: Working On Mozilla FireFox - Combined With MacBook Pro

Oct 9, 2010

I'm having a small problem, I'm trying to reach this: (This is just regular JavaScript).

But, when I'm trying to get it working on Mozilla FireFox (Combined with MacBook Pro), it fails. So I want to try with jQuery, but I don't know about it,

function changeText(){

View 1 Replies View Related

Resizing The Div Element - Code Is Not Working Correctly In Mozilla?

May 13, 2010

I wrote code to resize a div element.The main aim is to resize the div element from any direction. But it is not working correctly in Mozilla. Even in IE it is working fine only if the mouse is dragged slowly. If we drag the mouse fast it is loosing the control. Are there any browser issues to be fixed. Please check it. I'm including the file.

Code:
========================HTML File============================
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>[code]..........

View 3 Replies View Related

JQuery :: Hover (Top Level Menu) Not Working In Mozilla Firefox

Oct 29, 2010

I have implemented a jQuery hover top level menu & it is working fine in bothIE 7& 8. However, when I am executing the same code in Mozilla Firefox, it is not rendering hover effect at all. Also, I am adding a <span> using jQuery if JavaScript isn't enabled. This span is also not getting added in Mozilla.

Following is the code that I am using.
<script type="text/javascript" src="[URL]"></script>
<script>
$(document).ready(function(){
$("ul.subnav").parent().append("<span></span>");
$("ul.pnode li a").mouseover(function() { //When trigger is clicked...
//Following events are applied to the subnav itself (moving subnav up and down)
$(this).parent().find("ul.subnav").slideDown('fast').show(); //Drop down the subnav on click
$(this).parent().hover(function() {
}, function(){
$(this).parent().find("ul.subnav").slideUp('slow'); //When the mouse hovers out of the subnav, move it back up
});
//Following events are applied to the trigger (Hover events for the trigger)
}).hover(function() {
$(this).addClass("subhover"); //On hover over, add class "subhover"
}, function(){ //On Hover Out
$(this).removeClass("subhover"); //On hover out, remove class "subhover"
});
});
</script>

I came to know that IE & Mozilla see .parent differently.I have tried everything but not able to get this stuff working in Mozilla. I am using Firefox 3.5.5 version.

View 4 Replies View Related

Document.exeCommand ('Copy',false,null); Is Not Working In Mozilla

Jun 3, 2009

document.exeCommand ('Copy',false,null); is not working in mozilla

View 5 Replies View Related

When The Images Rotate In Mozilla In Between The Rotations, Mozilla Browser Adds A Little Colored Square That Represents A Blank Image?

Jul 16, 2009

had this in browsers areas but people told me I should put it here in Javascript because more people here would probably have seen it before and know why it happens. I have basic Javascript that rotates images. I've noticed any kind of Javascript code that rotates images has this same problem only in Mozilla. When the images rotate in Mozilla in between the rotations, Mozilla browser adds a little colored square that represents a blank image that are able to be seen does anyone know why Mozilla Browser adds that? For example when looking at this page in Mozilla can see it. if you know if this is some Mozilla problem with Javascript and images. Doesn't happen with IE and other browsers shows the images only and nothing else.

View 2 Replies View Related

Porting App To Mozilla - Work On Both IE/Mozilla ?

Nov 30, 2010

I've a BIG Problem With a HUGE JS application , i'm modifying its javaScript code to work on both IE/Mozilla , currently it works fine on IE but not on Mozilla.

My main Point now is events.

Lets try with a little module, consider this function :

And it is attached in this place like :

This works fine in IE , i want to modify it to work on Mozilla.

View 2 Replies View Related

JQuery :: Goes To The Save_edits Page Instead Of Just Using The Post And Staying On The Original Page - Mozilla Not Working

Apr 12, 2011

I have the following bit of jQuery:

Code:
$("#save_photos_all_continue").click(function() {
event.preventDefault();
var $black_white_all = $("#black_white_all").is(':checked');
var $color_all = $("#color_all").is(':checked');
var $other_all = $("#other_all").is(':checked');
[Code]...

In Google Chrome it works fine but in Mozilla/5.0 it actually goes to the save_edits page instead of just using the post and staying on the original page.

View 2 Replies View Related

Mozilla And DOM

Oct 29, 2006

I have an 'input' that is of type= "image", and name="butt",
that I need to enable/disable from time to time.

In IE (6) I used [document.theform..butt.disabled=condition] and it worked
fine. However, in a Mozilla (latest vers, no number avail) it doesn't see
this as an object. As a workaround I declared a global var 'theButton' and
used 'onLoad="theButton=this;"' within that 'input' to set the value, and
this works fine in both Moz & IE.

Having to use a global var is not a problem, but I would like to know why
the original attempt didn't work in both browsers? The 'form' that 'butt'
is a member of contains 1 select, 3 type="text" inputs, and finaly the
type="image" input.

Perhaps Moz doesn't add an 'input' of type="image" to the collection if the
types are mixed?

View 4 Replies View Related

Ns4,6,ie5,6 And Mozilla

Jul 20, 2005

I have this script and I want to adapt it to the DOM of most / all well
known browsers like mozilla and netscape.. at the moment it only works in
ie4+ en ns6. can anybody give me some hints?
This is used for making a tree <li><ul>

var ns6 = document.getElementById && !document.all;
var ie4 = document.all && navigator.userAgent.indexOf("Opera") == -1;

function checkcontained(e)
{
var iscontained = 0;
cur = ns6 ? e.target : event.srcElement;
if (cur.id == "foldheader")
{
iscontained = 1;
}
else
{
while (ns6 && cur.parentNode || (ie4 && cur.parentElement))
{
if (cur.id == "foldheader" || cur.id == "foldinglist")
{
iscontained = (cur.id == "foldheader") ? 1 : 0;
break;
}
cur = ns6 ? cur.parentNode : cur.parentElement;
}
}
if (iscontained)
{
var foldercontent = ns6 ? cur.nextSibling.nextSibling :
cur.all.tags("UL")[0];
if (foldercontent.style.display == "none")
{
foldercontent.style.display = "";
cur.style.listStyleImage = "url(images/open.gif)";
}
else
{
foldercontent.style.display = "none";
cur.style.listStyleImage = "url(images/fold.gif)";
}
}
}

if (ie4 || ns6)
{
document.onclick = checkcontained;
}

View 6 Replies View Related

This Works In IE But Not In Mozilla

Jul 23, 2005

I have some functions in a script in which I'm manipulating the
innerText and background colors of certain rows in a table. The lines
below work OK in IE but when I try them in Mozilla, I get an error
that says: "document.getElementById('TableX').rows is not a
function".

thisRow = document.getElementById('TableX').rows(1);
thisRow.style.background = 'white'

Can anyone give me a clue as to how to fix this so that it will work
in both browsers?

View 2 Replies View Related

XmlHttp With Mozilla?

Jul 23, 2005

anyone have a code example of using xmlhttp with mozilla, if i use the
following code, the function is never called, but it does work in IE.

xmlhttp.
{

if (xmlhttp.readyState == 4)
{
var response = xmlhttp.responseText;
divResponse.innerHTML += "<p>" + response + "</p>";
}
}

View 3 Replies View Related

How Disable The F5 Key In Mozilla

May 24, 2006

I am trying to disable the F5 key in Mozilla. I have the next code in
javascript that it is working in Internet Explorer but it is not
working in Mozilla. how can I disable the F5 key in Mozilla?

<script>
document.onkeydown = function(){

if(window.event && window.event.keyCode == 116){
window.event.keyCode = 505;
}
if(window.event && window.event.keyCode == 505){
return false;
}

}

</script>

View 7 Replies View Related

Mozilla DOM Element

Jul 3, 2006

I have a function which dynamically adds to a table. It receives a
variable which basically encapsulates this:

<div id="tableid">
<tr>
<td>col1</td>
<td>col2</td>
...
</tr>
...
</div>

It's worth nothing that the incoming variable is a product of XSLT
transformation, so I think it's technically an XML DOM element
(although I'm not too sure on the difference between the XML DOM and
the HTML DOM).

On the incoming variable, I do getElementsByTagName("tr") and -("td")
to get NodeLists of the rows and columns respectively. To insert them
into the table, I create new tr and td elements, then copy the value
over, like this:

//stuff to get a column
trs = getElementsByTagName("tr");
tds = trs[i].getElementsByTagName("td");
thiscol = tds[j];

//stuff to copy the column value
new_tr = document.createElement("tr");
new_td = document.createElement("td");
new_td.innerHTML = thiscol.xml

The .xml part is a Microsoft creation, so the only works in Internet
Explorer. In anything else the column value is rendered as 'undefined'.

I'm trying to make things work in Mozilla too, but an Element node
(thiscol.nodeType gives me &#391;') doesn't have nodeValue implemented.
InnerHTML and OuterHTML are not implemented either.

How on earth are you supposed to extract a value from an XML node if
nodeValue is not defined? Am I going about things in the wrong way?

View 8 Replies View Related

DOM Problem In Mozilla

Jul 19, 2006

I am facing problem with updating form element using javascript in
MOZILLA Details are as follows.

I have a div containing form element. on submit , i am submitting the
form using javascript-ajax and processing the form. then after
successfully processing i am replacing innerHTML of div with same
form. I am able to see same form on page after ajax update but when i
refill the form and submit it again..javascript is not able to find the
form element in HTML DOM.

This problem comes with mozilla-firefox but it works fine with IE 6 ...

View 2 Replies View Related







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