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
13 views
Only display link under certain circumstances?
I have a hyperlink on my page that looks like this:
<a href="<%= this.ResolveUrl("Search.aspx?id=" + lblGraphicNameValue.Text.Remove(lblGraphicNameValue.Text.Length -4)) %>" ...
0
votes
0answers
30 views
how to have a vertical header and textarea
i have a code...server side and cant seem to make it load wherein HEADER would be vertical, i have tried the code below,
<?php
require 'include/DB_Open.php';
$ea_name = $_POST['ea_name'];
...
0
votes
7answers
39 views
How can I get data inside a DIV to appear below other DIVs
I have the following HTML:
<div>
<div class="float-left gutter-right">
xx
</div>
<div class="float-left gutter-right">
yy
</div>
</div>
...
1
vote
1answer
20 views
Remove last selected element from the multiple select if user select more than 3 option using jquery
I need to select only 3 options from the multiple select. If user selects more than 3 options than the last selected element should be replaced by the new one clicked.
I have a example as follows:
...
0
votes
0answers
20 views
jQuery AJAX returned HTML data anchor tags not clickable in Firefox
The problem: Anchor tagged text in returned html are not clickable in Firefox (no "hand cursor", and no action). IE 10 seems to handle it just fine.
The setup: Using jQuery AJAX to call a php page ...
1
vote
1answer
18 views
How to make third tier menus open inline with the item?
Take a look at this fiddle: http://jsfiddle.net/Wss5A/72/
Specifically with regards to:
2-A-1
2-A-2
2-A-3
The (third tier menu) is created from the top on the left, I would like the first sub ...
0
votes
1answer
32 views
How do I convert a thumbnail to a larger image css
Is there anyway to resize an image without distorting it?
I have a 70px thumbnail image and I need to resize it to 200px X 165px while maintaining the aspect ratio. At the moment it stretches it when ...
0
votes
1answer
13 views
Whitespacing in html, anyway to display it as such
I have a good amount of content that stores their data in a database with plenty of whitespace, which shows how they want it to display on page. Stackoverflow can change it up with the code tag. (the ...
2
votes
3answers
56 views
Different file Javascript in the same file
Including many javascript files on the same page can lead to low performance.
What I want to ask is:
Is it best to keep separate files or include all files in one javascript file?
And if it is better ...
0
votes
0answers
54 views
PHP redirect when URL is deeper into site (when on a wordpress page)
I have a website with Domain: Hello.com
what I wont to know is how to redirect user back to Hello.com if they visit Hello.com/ask, Hello.com/cake or anything deeper.
Also if they go 2 degrees deeper ...
0
votes
6answers
42 views
div height: 0; without any floating child elements?
Here's some HTML I have
<nav class="navlist">
<span class="left">
<li><a class="active" href="#">Home</a></li>
<li><a ...
1
vote
0answers
40 views
Dragging on html table cells
Fiddle
$(document).live('mouseup', function () { flag = false; });
var colIndex; var lastRow;
$(document).on('mousedown', '.csstablelisttd', function (e)
{
//This line gets the index of ...
0
votes
1answer
12 views
Is it possible to edit a style of an element in Firebug and have this change reflected to unminified CSS/LESS?
This is a feasibility question:
Using any combination of smart IDEs, current F12 tools (not necessarily Firebug) and possibly some 3rd party plugins or software, is it possible to load a page with ...
0
votes
2answers
22 views
Converting HTML time value into Javascript integer
I would like to convert the following time value:
<td valign="top"><font face="Arial" color="#F0AC2F"><center><strong>TOTAL OPERATION ...
1
vote
3answers
40 views
Why does line-height add extra height?
<div><iframe style="height: 100px"></iframe></div>
<div style="line-height: 0"><iframe style="height: 100px"></iframe></div>
...