I believe this isn't legal html, correct?
as far as I can tell, almost every browser display/executes this anyway
anything I can do as an enduser?
the problem: its stuff added by free hosting provider, i don't really want to see it if its outside html tags, I don't care what it is. If there's a setting/button for firefox I'd like to kno...
We have an external .js file that we want to include in a number of different pages. The file contains code for sorting a table on the client-side, and uses the ▲ and ▼ characters in the script to indicate which column is sorted and in which direction.
The script was originally written for an ASP.Net page to offload some sorting work f...
For some time I've been making websites, but have never really seen discussion of the proper usage of the container tags. I've seen any number of different types of content in the collection tags, but it usually seems that the page creator just picks a style they like and sticks with it.
The main discrepancy in my mind is that between
...
I am using a jquery click function:
Button code:
<input type="button" id="myButtton">
Jquery code:
$(document).ready(function(){
$("#myButtton").click(function(){
alert("Mybutton");
});
This code works in Internet Explorer but does not work in Firefox.
What am I doing wrong?
...
What kinds of options do I have when a dropdown menu is faced with text that is so wide that extending the menu's width to accommodate is not feasible? i.e. It breaks the page layout, or just looks too ugly if the dropdown is adjusted to fit the long item.
Truncation?
Truncation plus full hover text?
Don't allow items that long?
Anyone...
I have made a table with a thead (header); on a Mac, and in Firefox everything is fine, but on Internet Explorer 6 the head is just gone...
Any idea why?
Here is the link to test it: http://www.acecrodeo.com/new/05-rodeos.php... The table is constructed in tablerize.js:
jQuery.fn.tablerize = function() {
return this.each(function(...
I'm using the new System.Xml.Linq to create HTML documents (Yes, I know about HtmlDocument, but much prefer the XDocument/XElement classes). I'm having a problem inserting (or any other HTML entity). What I've tried already:
Just putting text in directly doesn't work because the & gets turned int &.
new XElement("h1", "Text&nb...
I’ve developed an Adobe Flex (v. 2) application. The application exists as a .swf file hosted on a web server. I have an html page hosted on a completely different web server (which is independent of the web server the .swf file is on).
My question is how am I able to call the .swf file (that lives on the separate web server) from withi...
dd {
/*position: relative; /* IE is dumb */
display: block;
float: left;
width: 500px;
height: 16px;
margin: 0 0 2px;
background: url("white3.gif");
}
dd div.blue {
/*position: relative; */
background: url("blue.gif");
height: 16px;
width: 75%;
text-align:...
I have a form on my page and am dynamically adding controls to the form with Javascript/JQuery. At some point I need to get all the values in the form on the client side as a collection or a query string. I don't want to submit the form because I want to pass the form values along with other information that I have on the client to a b...
Hello.
For the longest time, I have wanted to understand why the browser adds an empty space between rendered HTML elements when there is a NewLine between them, for example:
<span>Hello</span><span>World</span>
The html above will output the “HelloWorld” string without a space between “Hello” and “World”, however in the following ex...
Well this question came after this one
The reasons are pretty much the same, to keep the stuff cleaner, how bad is it to call (being sure the css doesn't collide with overwriting tags)
To put < link rel="stylesheet" type="text/css" href="mycss.css"> in the middle of the body? (if it works)
So that in some cases I could have specific ...
My company is starting a large scale web application, and I'd like to hire a designer to help with some of the pages (to create our general template, look/feel, and control set). Where is the best place to find a designer with some knowledge of usability? Would we be best looking on elance.com (or similar sites), or is there a better a...
I have a standard aspx page with which I need to add another standard HTML form into and have it submit to another location (external site), however whenever I press the submit button the page seems to do a post back rather than using the sub-forms action url.
A mock up of what the form relationships is below. Note in the real deployme...
I'm trying to get the text to float around the little image on my web-page, and I've tried everything I can think of. I would embed the html and css here, but I had trouble doing it, sorry.
(I'll edit out the url when it's answered so I ain't using this as advertising.)
[removed]
...
I often find myself needing to do some simple screen scraping for internal purposes (i.e. a third party service I use only publishes reports via HTML). I have at least two or three cases of this now. I could use apache httpclient and create all the necessary screen scraping code but it takes a while. Here is my usual process:
Open up C...
I have following layout:
4 rounded corners background and two panels (left panel and right panel) inside it.
Currently I implement the layout as follows:
Table with 9 cells:
top left corner | | top right corner
|left div right div|
bottom left corner | | bottom right corner
C...
Hi,
In our applications we make html documents as reports and exports.
But now our customer wants a button that saves that document on their pc. The problem is that the document includes images.
You can create a word document with the following code:
private void WriteWordDoc(string docName)
{
Response.Buffer = true;
Response.Content...
Hi everyone,
I have a <select> box with some year numbers in them, ranging 50 years back, and currently when I click on the box the options will reach to the very bottom of the screen, is there any way to set the max amount of options a select box should show before resorting to a scroll bar to show the rest? I could not find anything a...
In versions of opera greater than 9.0, I have found a bug that fails to render a large portion of my text. This happens with links, span and strong tags. As well as this, it throws a strange error with sup tags.
Here is the link to the live site: http://clients.bionic-comms.co.uk/licensingawards/microsite/enter.html
Below is the code (t...