Window.open Javascript Function Is Not Working In Mozilla, But Working In Other Browsers

Mar 18, 2010

Window.open javascript function is not working in Mozilla, but working in other browsers, here is what I have write.

<a href="javascript:window.open('../Terms.aspx','Terms','width=550,height=400')">
click here</a>

Actually what happened in Mozilla is popup is opened but parent window is blank with [object Window]

View 2 Replies


Similar Messages:

JQuery :: Save As Window Is Working In IE But In Mozilla Its Not Working ?

Jun 14, 2010

In my Application i write one javascript function as

Page.ClientScript.RegisterStartupScript(typeof(Page), "myscript", "<script >document.execCommand('SaveAs');</script>");

to save that file.

its working fine in IE but in firefox mozila that save as window is not comming.

which function will work for both IE and FireFox mozila.

View 1 Replies

Forms Data Controls :: Javascript Function Called On Click Of Treeview Is Not Working In Mozilla?

Apr 29, 2010

I want postback on click of treeview node .So i called a javascript function to do the same. I wrote the following ..On page load:

[Code]....

This is working fine in IE. But it is not working in mozilla and google chrome.

[Code]....

View 4 Replies

Window.open Function In HREF TAG Not Working?

Feb 2, 2011

I am trying to open popup using window.open finction but somehow it's not working ... well below is the code

string properties = "left=250px, top=245px, width=700px, height=450px,scrollbars=yes, status=yes, resizable=yes";
TableCell cell = new TableCell();
cell.Text = "<a href="javascript:void(window.open('details.aspx?node="+node+"','"+properties+"'))">" + "View Details</a>";

But his is not working. While clicking the anchor tag getting javascript error "Invalid argument".

View 1 Replies

Visual Studio :: Javascript Debugger Is Not Working On Mozilla Firefox But Working Fine On IE8?

Jan 15, 2011

I am using vs2008 pro. my problem is that javascript debugger is not working on mozila firefox but working fine on IE8.

View 1 Replies

C# - Javascript Is Not Working In Mozilla But Working In Other Browers?

Apr 4, 2011

Description:- hello code given below is working fine in i.e. and other but not working in all mozila version.javascript is simple to devide two textbox's value. you can easily understand.

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="javascript_test.aspx.cs" Inherits="javascript_test" %>
<!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" >
<script type ="text/jscript">
var _txtamount;
var _txtins;
var _txtinsamount;
[code]....

View 2 Replies

Javascript Code Not Working In Mozilla And Firefox

May 27, 2010

This is my code for making textbox accept number only.

<asp:TextBox ID="txtRotationNo" runat="server" onkeydown="return NumberOnly();" CssClass="textbox"></asp:TextBox>
function NumberOnly () {
if(!(event.keyCode>=48 && event.keyCode<=57) && event.keyCode!=8) {
event.returnValue=null;
}
}

This code is working in Chrome and Opera, but not in firefox.

View 4 Replies

Web Forms :: Javascript Function To Open A New Window?

Feb 5, 2010

I have the following 2 lines of code:

Dim sHyperlink As
String =
"<a href=""LabPopup.aspx?RefNo=" & iLabRefNo &

[code]...

View 3 Replies

Javascript - C# Function Is Not Working?

Apr 4, 2011

if (e.Row.RowType == DataControlRowType.DataRow)
{
// if no link are presen the cell,

[code]...

View 4 Replies

C# - Javascript SetInterval Function Not Working

Mar 19, 2010

I want to call a function for every half minute. i am using the following code. The function is not getting triggered.

Code:

window.setInterval('progress()', 10000);

View 2 Replies

Javascript - Why ClientValidationFunction Function Is Not Working Properly

Jan 29, 2011

javascript - Why ClientValidationFunction function is not working properly

<script type="text/javascript">
function clientValidation(sender, arguments)
{
if (arguments.value == "hello world")
arguments.isvalid = true;
else
arguments.isvalid = false;
alert(arguments.isvalid);
}
</script>
<asp:Label ID="lblName" runat="server" Text="Enter Your Name" />
<asp:TextBox ID="txtbxName" runat="server" />
<asp:CustomValidator ID="CustomValidator1" runat="server" ErrorMessage="You are Not allowed" Display="None" ClientValidationFunction="clientValidation" ValidationGroup="ValidationSummary1" />
<br />
<asp:Label ID="lblClass" runat="server" Text="Class" />
<asp:TextBox ID="txtClass" runat="server" />
<asp:RequiredFieldValidator ID="RequiredFieldValidator1" runat="server" ErrorMessage="Please enter Clas" ControlToValidate="txtClass" Display="None" ValidationGroup="ValidationSummary1" />
<br />
<asp:ValidationSummary ValidationGroup="ValidationSummary1" ID="ValidationSummary1" runat="server" />
<br />
<asp:Button ID="Button1" runat="server" Text="Validate" ValidationGroup="ValidationSummary1" />

View 1 Replies

Javascript - History.go(-1) Function Not Working For Dropdown?

Dec 30, 2010

i am using the function history.go(-1) function on my button to go back. but i am getting a prob in value selected in dropdown.

the sourceview is showing the original value selected but on UI its showing the previous value

means when i click on back button,

UI shows the same value but when i view the source code then the selected value is the same that need to be appear

for example

suppose my dropdown has data in format MM/YYYY first i select 02/2010 and then after that i select 04/2010 now when i click on back button having onclick ="history.go(-1)"

then the value in dropdown remains the same i.e 04/2010 but when i see the source code, then for dropdown the selected value shows as 02/2010.

View 1 Replies

Web Forms :: Function In Javascript Included File Is Not Working?

Jul 27, 2010

I am using mixed validation i.e. dot net controls validation and javascript validation. Javascript(js) function is 'hpVali()'. It is working when coding javascript within aspx page's head section. but when i moved it in a js file. It stoped working.

I have used the script to register/add js file in aspx.cs file as:

[Code]....

View 6 Replies

AJAX :: Simple Javascript Function Not Working In Firefox?

Aug 5, 2010

I have a simple js function that counts down the characters in a text box, and it works in every browser EXCEPT Firefox (3.6.6). I've tried changing some syntax, but nothing has worked so far.

[Code]....

View 8 Replies

AJAX :: Javascript Function To Restrict Input On Textbox Not Working In IE7

Mar 26, 2010

I use the following javascript function to restrict the input in textbox

[Code]....

My textbox is appears as below

[Code]....

It is working perfect in FireFox,Chrome,IE6 but it is not working in IE7 Inside my javascript all conditions are working fine in IE7 but it is not restricting the input

View 3 Replies

C# - Css/skin Working In IE Not In Mozilla?

Nov 18, 2010

my asp.net web application is good looking in IE whereas in Mozilla, the css/skin i've used doesn't work. what's the solution

View 3 Replies

Web Forms :: Dowaload Is Not Working With Mozilla?

Jul 21, 2010

this is the code working fine with IE but not working in mozilla.

ResumeExists---is the physical location of file in my server
Response.Clear();
Response.ClearContent();
string path = Server.MapPath(ResumeExists);
string name = System.IO.Path.GetFileName(path);
string ext = System.IO.Path.GetExtension(path);
Response.AppendHeader("content-disposition", "attachment; filename=" + name);
Response.WriteFile(path);
Response.End();

View 2 Replies

Unable To Work In Mozilla But Working Fine In IE?

May 20, 2010

At page level I have set EnableEventValidation="false" and at Page_load below code is written:

Code:
grdMaster.Attributes.Add("OnClick", String.Format("{1};this.disabled = true;document.getElementById('lblProgress').innerHTML='Generating...It will take approx 30 Mins.'; {0};", ClientScript.GetPostBackEventReference(grdMaster, ""), ""));
Above coding is fine in IE but it does not work in Mozilla.
What could be the reason?and what is the solution on this?

View 9 Replies

AJAX :: Collapsible Panel Not Working In Mozilla

Nov 30, 2010

var newcpe = $find(cpe);
newcpe._doOpen();

I am using the above code to open the collasible panel. But its working in IE only. Not working in mozilla. But I can get the collapsible panel id in both the browsers by alert(newcpe);

View 4 Replies

AJAX :: Modal Popup Isn't Working In Mozilla

Aug 9, 2010

In my application modal popup extender is not working in mozilla. but it is working well in IE 7 perfectly.

View 1 Replies

Security :: Win Authentication Working Fine On Chrome / Mozilla But Not On IE?

Jun 29, 2010

I have created a we app. using win authentication. When type the server ip addres in chrome I get the login window and it works just fine with my organizations credentials, however when doing the same using Internet Explorer I have to login with the server credentials as my account is not valid.

View 1 Replies

Web Forms :: Margin-left For Imagebutton Not Working With Mozilla Browser?

Mar 28, 2010

Is there a compatibility issue with asp.net imagebutton with mozilla browser. I have set a margin-left for an imagebutton but when I tried to view on mozilla, it does not work?

View 1 Replies

Web Forms :: Date Control Is Not Working In Mozilla Firefox And Google Chrome?

Mar 28, 2011

I am using javascript based calendar control in my application.

Following is my .aspx and .aspx.cs file.:

.aspx file:

[Code]....

.aspx.cs:

[Code]....

On click of hyperlink we are opening javascript calendar and assiging it to textbox.

The same functionality is working in IE, but its not working in Mozilla firefox and Google chrome.

This is one of the major problem i am facing in entire application.

I want to make my application to be work fine on multiple browser.

View 1 Replies

Javascript - IE - Get Popup's Opening Window When Using Window.open (url)?

Sep 23, 2010

we are running a click-to-call service, my idea is basically like this: website have a link on their page, when the link is clicked, a web page(say it is popup.aspx) hosted on our server is popup, user can input their phone number, and click "call me" button to let the website call him. In the button click event, I want to get Request.UrlReferrer, then query the db to get website's phone. But in IE, Request.UrlReferrer is null(firefox is ok, not test chrome yet),my question is how to get opening window' url in IE? we put popup.aspx on our server because

our client website is not force to use asp.net. we have the control what we put on the popup window, and can modify the page just from our side, if we put the pop window on our partner's side, if we have 100 partner, and we change the page's design, we will notify everyone of them to change this, change that. we can implement a statics system to know how popup a day, which site is most popular,etc

View 1 Replies

Using The Javascript To Open A Child Window Using Window.showModaldialog?

Sep 24, 2010

I am using the javascript to open a child window using window.showModaldialog(), i have retuen a value from the child page is working fine in IE and firefox but is not working in chrome browser, is there any work around or alternative for it to work in chrome as well.

View 2 Replies







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