The site is here: http://tinyurl.com/2wj8qb4
I have opt to using the radiobutton's labels as customized buttons for them. This means the radio inputs themselves are display:none. Because of this, the browsers don't tab stop at the radio labels, but I want them to.
I tried forcing a tabindex to them, but no cigar.
I have came up with ...
lets say i have a table cell with fixed width and height.... and i have data that exceeds the cell's fixed dimensions...
<td width="500" height="300">lots of data that exceeds the dimensions</td>
can i enable scrolling of this data within a cell....
if not than what is the solution.. i only have that 500 x 300 space
...
Parsing HTML / JS codes to get info using PHP.
www.asos.com/Asos/Little-Asos-Union-Jack-T-Shirt/Prod/pgeproduct.aspx?iid=1273626
Take a look at this page, it's a clothes shop for kids. This is one of their items and I want to point out the size section. What we need to do here is to get all the sizes for this item and check whether the...
I hope I asked that correctly. I am trying to figure out what element.sourceline does and if there is some way I can use its features. I have tried building my elements from the html a number of ways but every time I iterate through my elements and ask for sourceline I always get None. When I tried to use the built-in help I done't ge...
I have a div in which I create a chart using protovis. The div has width: 100% and height: 100% and the code to create the chart uses $('#chart').width() and $('#chart').height() to get the size of the div at render time and fill the page with the chart. I capture the resize event on the window and adjust the div and the chart so that ...
Hello
What is the default action happening when we drag over an image ?
When I drag over an image the cursor changes to a black circle with a line inside (in Firefox) I could block it by the code e.preventDefault() using jquery, but I didn't understand what is the default action happening when I drag over an image.
Thanks
...
For various reasons, I need to put a (mostly) transparent <div> over some text. However, this means that the text can't be clicked (eg, to click links or select it). Would it be possible to simply make this div "invisible" to clicks and other mouse events?
For example, the overlay div covers covers the text, but I would like to be able ...
Hi guys !
I gotta admit that's a first-timer bug for me. I've never seen that...
I have this code :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $lang; ?>" >
<head>
<title><?php echo PAGE_TITLE; ?></t...
I am evaluating hundreds of thousands of html files. I am looking for particular parts of the files. There can be small variations in the way the files were created
For example, in one file I can have a section heading (after I converted it to upper and split then joined the text to get rid of possibly inconsistent white space:
u'KEY...
I'm trying to get one div to float left, and one div to float right, but have a form in between, the form has 2 select elements(drop down boxes) in it.
I can get it so I have:
Div<------------->Text<------------->Div
but not
Div<------------->Form<------------->Div
If I just have an empty form element than it works like the text, bu...
I'm currently using SuperFish - http://users.tpg.com.au/j_birch/plugins/superfish/#download - for the first time in a project of mine.
My global navigation works as intended, however, regular page lists are displaying the same styling as my Superfish navigation. I have looked through my CSS, everything is written pseudo-like and should...
hello,
i have a form that with a link click adds a new for a file with jquery's .html()
// show div to change image on product_edit.php
$("#change_img").click(
function () {
$("#change_img_div").html('<label>Image product</label><input type="file" value="" name="item_img" id="item_img"/>').fadeIn('fast');
...
This is a very simple dl.
HTML
<dl id="photo-attributes">
<dt>Edition</dt>
<dd>200</dd>
<dt>Ratio</dt>
<dd>3:1</dd>
<dt>Location</dt>
<dd>Great ocean road, Victoria</dd>
<dt>FStop</dt>
<dd>F-32</dd>
<dt>Exposure</dt>
<dd>3 minutes 40 seconds</dd>
</dl>
CSS
#photo-attributes {
margin: 1em 0;
overflow: hidden;
}
#photo-attributes...
How to make a grid (like graph paper grid) with just css?
I just want to make a virtual grid paper with only using CSS.
Thanks in advance for the help.
...
Hi,
Google has launched Google font API but, CSS3 standard came with @fontface which enables us to have non web safe fonts on websites.
Can anyone suggest pros and cons of both over each other. Which one is preferred and why?
...
I'm trying to accomplish the following content in source code:
<div id="box<%=id%>"></div>
Without escaping any signs in Haml.
%div{ :id => "box_<%=id%>" }
produces
<div id='box_<%=id%>'></div>
Right now the only way I can do this with Haml is to use :plain filter and hardcode HTML without using any View Helpers. How can I...
I have a few hundred static HTML files that need to be processed.
They contain links like this
<a href="http://www.mysite.com/">Link</a>
I need to add ?ref=self to any url that begins with http://www.mysite.com and becomes
<a href="http://www.mysite.com/?ref=self">Link</a>
however, I do not know whether it's goi...
Hey I am very new to Web Programming. I have been learning PHP from the past few days and I am stuck at one thing.
I have a form tag in my code which has two submit buttons to manipulate on the data.
Since I can have only one action definition on my form tag, it can lead me to one page only. (Not very sure)
Now depending on the button ...
I'm currently developing a Safari extension that uses an injected script to further inject some HTML into the current webpage, as well as injecting some other scripts to make it work. This is all working fine, but the issue is that the HTML that is injected gets affected by CSS stylesheets that the webpage has already imported. For examp...
Hello,
I'm not entirely sure this is possible, but what I am trying to do is set an element property within a user control to a value passed in via a ViewModel class.
for example, say I have the following ViewModel class
public class myViewModel
{
[DisplayName("Image URL")]
public string URL { get; set;
}
and then have ...