HTML (HyperText Markup Language) is the principal markup language used for structuring web pages and formatting content. The most recent iteration of HTML is HTML5.
0
votes
0answers
16 views
Having with with iframe on IE8 and IE9
I have a <href> link in the html code which works well when not put inside the <iframe tag and the same link gives issue when put inside the <iframe
Below is the code:
<iframe ...
0
votes
0answers
2 views
Adding aria atributes to dojo widget
I was doing some accessibility work, and I have currently been adding aria-* attributes as I would any other attribute. Is there a special way of adding aria-* attributes to dojo widgets, or is best ...
0
votes
2answers
16 views
HTML email - TD hover to change back background-color not working
My codepen:
http://codepen.io/leongaban/pen/iJBrn
Note this isn't for a regular webpage, I'm building an HTML email, however for modern browsers / email clients it would be nice to have a simple ...
-1
votes
1answer
9 views
HTML GOOGLE - link to google maps
I'm developing a website in HTML and I would like to surround a postcode with a link so that when a user clicks on the postcode he is sent to google maps searching that postcode. Any advice how can I ...
1
vote
1answer
17 views
Making a dropdown menu visible only on hover
I have been searching the internet. This question Hovering <a> in CSS without href on Stack Overflow, doesn't address my issue in a way I can understand.
I am trying to make a "primary" menu, ...
3
votes
2answers
47 views
<noscript> tag not working
I've used tag to hide certain elements when javascript not enabled, however it doesn't seem to work.
My document declaration
<!DOCTYPE html>
at the end of my file I typed the following
...
0
votes
2answers
21 views
How do I post the value of multiple answered checkboxes? - PHP
I have the following code below that retrieves one of four optional checkbox answers to one quesition.
In my database instead of reading the correpsonding value, it always posts 0for each time a box ...
3
votes
3answers
32 views
UL class not working? Only LI works?
I just started HTML/CSS two days ago.. Please go easy on me. I'm currently building a website. For some reason, I cannot get the the HTML class/id to render with CSS. To make it work, I have to make a ...
0
votes
0answers
12 views
Transparent still overlay: magnify content underneath it (Pure CSS)?
Introduction
Here is a fiddle to see the actual behavior click on the h1 link.
I'm trying to magnify all elements so that we can see behind the div that pops up.
I have tried adding some blur to it ...
2
votes
2answers
24 views
anchors.length in javascript is not working properly
Its very strange condition for me but anchors.length only give total number of anchors when i place script after all anchors tag and when i place before all anchors it gives zero....so i did this but ...
0
votes
2answers
20 views
How to fix the width and height of div and make the content inside div resize to div's width and height?
I have a div with an ID. I am changing the div html using jquery.
The html may have iframe with large width and height. I want to have the div with fixed width and height. and the content of the ...
0
votes
9answers
42 views
Insert a div in a random location in a list of divs
I have a page that looks like so:
<div id="container">
<div class="item">...</div>
<div class="item">...</div>
<div class="item">...</div>
<div ...
0
votes
1answer
25 views
Hovered span displaying under image
So I have a list of 'things' people can earn with information about each one displayed like this.
<--div 1 a.img--> <--div 2 a.img--> <--div 3 a.img-->
<--div 4 a.img--> ...
0
votes
3answers
30 views
PHP not outputting new lines from JSON data
I'm getting a feed that contains json data that is then decoded by php (json_decode) and echoed back out to my html page.
The feed contains \n characters but when the PHP echos them out, the HTML ...
0
votes
4answers
36 views
Append in a table with jQuery
This is my code to add rows to a table
for(var i=0;i<subjects.length;i++){
$('#table-wrapper table').append("<tr><td data-subjectid="+i+">"+subjects[i].name+"</td>");
...