Jquery i dont have alert and firefox i dont have anything in return. The code was working before, database query have successfull records also. What i am missing???
Jquery ajax.
$.ajax({
type : "POST",
url : "include/add_edit_del.php?model=teksten_display",
data : "oper=search
}
});
PHP
...
I want to create a Delicious bookmarklet in Firefox that bookmarks the current page with a predefined tag.
For proof of concept, if I enter this url, it works:
https://john:[email protected]/v1/posts/add?url=http://www.google.com&
description=http://www.google.com&tags=testtag
But this as a bookmarklet doesn't, I get ac...
Hi all,
Thanks to everyone who helped with my last question but I've got a new browser-independent problem:
For some reason, the image navigator (not yet functioning) on a website I'm working on is currently not displaying in the correct place on Firefox. It appears in the right place in IE8 and Opera but Firefox seems to have a proble...
I have this button which opens up a window.showModalDialogue window. This works smooth n all browsers.
The problem is if i have a window.open() inside the page showModalDialogue as a Modal window instead of a independednt window.
/*===========================================*/
/*open window using ShowModalDialogue in page*/
/*==========...
This happens about in about 40-60% of loads, both in FF and chrome, though slightly differently. I'm somewhat new to js, and have no clue to why this would happen randomly. Any ideas?
Here's one readout, they vary.. Usually jquery-min and/or jquery ui are listed as culprits..
Uncaught SyntaxError: Unexpected string
:3000/public/javascr...
Hello,
I have an onclick event attached to a button.
Clicking the button adds a text box to the target div.
the code is:
onclick="return addBlank("param1","param2");
The function addBlank does not have a return statement.
Clicking on the button behaves as intended in firefox, opera,chrome and safari - i.e., an empty text...
When you refresh/reload a page or use the back button, Firefox is kind enough to repopulate your inputs with what was entered before you navigated away.
Though this is a nice feature it does not trigger my jquery validation and the unsaved changes warning I add to my pages.
Is there a way to either disable this feature in Firefox (wit...
I am developing a ff extension. On one menupopup, the onpopupshowing calls a javascript function. Tha JS function extracts a list of names. Now these names have to be displayed in the same popup.
How can i get this? Basically i will need to pass the data (just as we use beans in java) to the browser from the JS function. The data can ch...
I have a WebForms app that uses a field validator on a dropdownlist. It works in IE but not FireFox.
This is pretty straightforward stuff I'm doing. Here are the setups for the dropdown and validator:
<asp:DropDownList ID ="dmbFileActNo" runat="server" CssClass="DROPDOWN_MEDIUM" AutoPostBack="True"></asp:DropDownList>
<asp:require...
I have a flash video loading in a modal window. It works in others browsers but not Firefox. Firefox opens the modal window to the correct width of the object, but with no height. I have come to learn that Firefox does not recognize <param> and instead uses the data attribute. However, when I remove this attribute, the modal opens with c...
I have question to Java or C# programmers. I want to render some pages in various browsers mainly Firefox and IE and save it as a picture. I have not any serious experience in Java/.Net. Is there any libs/tools for such tasks? I thought about some FF extensions for example but I don't know how to do it in IE. Is the in .Net some libs for...
Hi,
I make innerHTML to get data and store it in database. When i tried in firefox it is coming proper with quotes(" or ') for attributes. But in IE i am not getting the quotes(" or ') for attributes. Is this a browser issue? Any answer for this.
Thanks
...
I have created .ashx which implemented IRequiresSessionState, so I can create session variables in that ashx, it worked in IE, but doesn't work in Firefox.
When access this session variable from other pages it's NULL.
any idea? thx.
...
Good day,
I'm almost finished with my .net project implementation of a new design. But I'd like to try it with Firefox before releasing it.
When I debug the project it creates an URL with "http://localhost/rest-of-url" and it opens IE and I can see the site. But when I copy this URL to Firefox it won't load the CSS at all. Is that a pro...
I'm writing a Firefox extension that needs to inject a css file into webpages. The css file is bundled with the extension, so I can access it using a chrome url
chrome://extensionid/content/skin/style.css
I'm trying to inject css like this when the page is loaded:
var fileref = document.createElement("link");
fileref.setAttribute("re...
I am setting a Session variable in an HttpHandler, and then getting its value in the Page_load event of an ASPX page. I'm setting it using
public void ProcessRequest(HttpContext context)
{
HttpPostedFile file = context.Request.Files["Filedata"];
context.Session["WorkingImage"] = file.FileName;
}
(And befor...
I have a ff extension which creates a popup and shows dynamic data in it. basically when the popup opens a js function is run which then constructs the popup list by appending the items like this
var myMenuPopup = document.getElementById("file-popup4");
newItem = document.createElement("menuitem");
newItem.setAttribute("label", namelist...
background-color:transparent doesnt work on SELECTs in browsers other than FireFox.
So how I specify background-color:transparent for FF alone and background-color:#something for others ?
...
Hi all
I'm assigning a click event to a bunch of anchors by class name, and it works in all browsers except Firefox, here is the JS:
var click_addthis = function(e, href) {
if (!e) {
var e = window.event;
}
e.cancelBubble = true;
if (e.stopPropagation) e.stopPropagation();
window.open(href, "Share It", null);
...
Hello,
I've extracted the following from a project we are working on:
http://www.bridgedev1.com/videotest.html
This plays an OGV or M4V video depending on the browser, as one would expect.
The page is loaded, then the video inserved using jQuery. This works perfectly in Safari and Chrome.
The problem is that in Firefox (3.6.3). When...