I want to log all clicks on a link.
I've written a little logger, which can be called by an url (returns an empty page). This url is called with a jquery-ajax-method. But unfortunately not every click is logged, if the user uses firefox (everything looks ok in IE).
I've tried many things but have no solution to this problem, have anybo...
I have a test case that requires typing in a partial value into an ajax based textfield and verifying the list has the expected content. If it does, select the content. Any idea how to make this work?
...
I'm developing a dynamic html pop-up window (an absolute positioned div) using jQuery that automatically centers itself on the screen. It can also accommodate content that fits or exceeds the dimensions of the window screen.
The idea is that our customer clicks a "read more" link next to our product listing and then this pop-up window c...
There is a bug in Firefox (even in the new betas and in minefield releases) which prevents the caching of certain files because of the algorithm for creating a key in their cache hash. Here is a link to the source code of the function.
I want to ensure that all of my site's files can be cached. However, I do not understand why their...
Hi,
I need to collect data on firefox CPU usage during web-development coding session and I'm wondering if it is possible to monitor CPU usage of particular firefox plugin.
Right now i'm using windows' perfmon.msc, but it will only allow me to monitor firefox process as a whole.
Do you know any tools that would allow me to get CPU da...
<script>
var is_gecko = /gecko/i.test(navigator.userAgent);
var is_ie = /MSIE/.test(navigator.userAgent);
function insertNodeAtSelStart()
{
if(is_gecko)
{
var S = window.getSelection();
if(!S.isCollapsed)
{
var R = S.getRangeAt(0);
var R1 = R.cloneRange();
var NN = docu...
Hi,
I'm trying to create a Firefox plugin and I would like to use some jQuery functions. How to include needed jQuery libraries? Some way to include the libraries to the plugin itself?
I need to show a jQuery Dialog type window on various web sites when user clicks a link injected to the page.
Thank you for your answers!
...
How can I make the tootip/flyover of the tabs appear faster? There is too much reaction time, it takes ages to look through many of them.
I have most of the time 100 tabs open in Firefox (I am using the tab mix plus addon - "tmp").
To see what's in the different browser windows I do not activate them, but I just move the mouse over the...
I have a YUI datatable set up, with about 90 rows of data in it and I want the user to order the columns as they see fit and then print the page.
I have all the YUI stuff set up and it works great. However when printing, it removes all the coloring, and plays with the table layout.
I added this:
[
H1 {
text-align: center
}
.hid...
I am aware that there is a selenium API (isSomethingSelected) used to see if a value is selected in single-select dropdown. Is there an equivalent for multiselect?
...
The problem I am having is that given an input element with a maxlength that is much wider than the element's width (as set in its style), and, given a value that is wider than the element's width, how can I get the element to "scroll" to the end of the text. In IE it is easy, I create a textRange object, put its start and end position ...
i have the following markup code:
<div style="width: 72%; margin: 15px; margin-left: auto; margin-right: auto;">
<center>
<div style="border-top: Solid 1px Black; border-left: Solid 1px Black; border-right: Solid 1px Black;
padding: 5px; background-color: #EEEEEE;">
</div>
<asp:GridView Style="width: ...
I use Firefox to develop a web site and at the same time to browse the web, read my gmail, etc.
The problem is every now and then I need to delete the cache and or remove the cookies of the web app, but I want to stayed logged in in the other web pages I am visiting.
Do you know a Firefox plugin (or Firefox trick) that can help with th...
We have a web page with this general structure:
<div id="container">
<div id="basicSearch">...</div>
<div id="advancedSearch" style="display: none">...</div>
<div>
With this CSS:
#container { MARGIN: 0px auto; WIDTH: 970px }
#basicSearch { width:100% }
#advancedSearch{ width:100%;}
We have a link on the page that lets the user ...
See this pastie in firefox. When resizing the browser window horizontally, then when the yellow area gets hidden a bit I want a horizontal scrollbar to appear. In Safari this code works fine. How would you style this for firefox?
I am using overflow:auto; I only want the scrollbar to appear when it makes sense, I don't want to see it al...
I'm getting a "not well-formed" error in the error console of Firefox 3.0.7 when the JavaScript on my page loads a text file containing an object in JavaScript Object Notation format. If the file contains nothing but the JSON object, it produces the error. If I wrap the object in <document></document> tags it does not produce the error. ...
I'm attempting to embed a PDF file into a HTML page using the object tag. The following HTML crashes Firefox 3.0.7:
<object id="pdfObject40" type="application/pdf" data="/file.ashx?id=40" width="432" height="600">
<param name="src" value="/file.ashx?id=40" />
</object>
I don't have a problem in Internet Explorer.
...
I've been working with firebug for a while now, but I've noticed recently that it doesn't always allow you to set a break-point in your code for some reason. The line numbers in the firebug debugger turn all grey and you can't get the program to stop on any of them.
When I can get it to work, the lines you can break on turn green.
I...
I have an XML file that I want the user to be able to see with two different stylesheets. The stylesheets are mutually exclusive, so only one of them should be active at a a time.
I tried adding the following to the top of my XML file:
<?xml-stylesheet type="text/xsl" href="brief.xsl" title="Breif" ?>
<?xml-stylesheet type="text/xsl"...
There's several section of our site where the user needs to enter some information, and Firefox's auto fill takes over when the page loads - mostly incorrectly!
For example, there's a "Fax Number" field that for some users Firefox keeps filling in with their email address. If they don't see this and they go to submit the form out valid...