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.
1
vote
0answers
9 views
How to buffer results from a webpage to another?
I am using flask for my website.
I want to submit data using a form from my website to another website and then format the results page (an html page) before displaying it on the browser on my ...
0
votes
3answers
19 views
How can I do this sort of table in HTML?
__________________________________________
|________________________________________| << cell uses 100% of the row space
|____________________|___________________| << each cell there use ...
0
votes
4answers
72 views
what does Ctrl + PLUS/MINUS do in modern browsers?
From my understanding, the best way for increasing text size is using Ctrl + +. This also keeps the layout. But does anyone know what exactly browsers do when this key combination is pressed? I want ...
0
votes
0answers
9 views
Error on Ubuntu: stdin.h no such file or directory compilation terminated
Using flex to compose a formal converter. For any legal CSV file, converter should translate it to an HTML file containing a single table.I am getting the error: stdin.h no such file or directory ...
0
votes
0answers
19 views
JavaScript Suddenly not working - TypeError: document.hform.sSecureUser is undefined
My Code:
<?php include ($_SERVER['DOCUMENT_ROOT'].'/functions/functions.php');?>
<div id="hasJavaScript">
<form name="signup">
<label>Username</label> ...
0
votes
0answers
40 views
How to solve hover function issue?
guys,
the problem is that when I open bottom section an bring cursor up the first section is opening correctly. But! when I move cursor down on the border between two sections they are closing. Hope U ...
0
votes
2answers
39 views
For creating click-able buttons on header div which tags should I use?
I want add buttons on top of a div (like main menu for most websites). Yesterday I created the buttons using different div tag for each button and adding lots of margins but the end result wasn't ...
0
votes
2answers
38 views
Adding space between numbers?
I'm trying to make a number input. I've made so my textbox only accepts numbers via this code:
function isNumber(evt) {
evt = (evt) ? evt : window.event;
var charCode = (evt.which) ? ...
-2
votes
2answers
55 views
Completely disable scrolling of webpage [duplicate]
I want to disable scrolling for my webpage, but completely, not just disable scrollbars so
overflow: hidden
will not work.
Also this workaround does not apply on Macs due to the "soft-scroll" on ...
0
votes
0answers
15 views
Reading and writing files from html in Google App Engine
I am working with GAE and Python, I know python, but I don't know HTML, which seems to be what I need right now. I want to take in a text file write something in it then return it for download. I am ...
1
vote
0answers
12 views
Javascript /Html schedule manager inputs handling
i am making a agenda manager and i have a javascript that is called whenever a input is entered, the javascript should store all the inputs. It is working when only one input is entered. I want to ...
0
votes
1answer
22 views
How correct code in wodpress sidebar to show only posts from last 1 month from category
I started to work on one website after another developer and I don't understand how to make popular widget to show only posts from last 3 months from categories(1 month for category news).
I see ...
0
votes
1answer
58 views
How is this hover effect done?
I'm not sure what to call this effect or even how to look it up. I want to do something similar. Hover over the links on the navigation bar and you'll see what I'm talking about.
...
0
votes
0answers
27 views
Text on Image stays in place despite image resizing
I made a quick web design which has three images.
As the browser size decreases, so do the pictures, so they all stay in visible sight.
Now I tried to put text over those images, but the text moves ...
0
votes
1answer
24 views
marker disappears after setPosition on google maps
I worked on a GPS position show on google maps. The issue here is that the google mark only appears on the first time (set the google marker part). It will disappeard every time after the setPosition ...
0
votes
2answers
29 views
table rows as dropdown
I have an HTML table. Im trying to add functionality such that when I click on a row it should display a set of row, just like drop down menu. I have done the following,
<table>
<tr ...
0
votes
0answers
26 views
How to replace a value of SRC parameter within EMBED tag of HTML?
I am working on application in Java that is displaying HTML pages of different places all over the world. I have an object containing youtube video embedded into my HTML page like this:
<object ...
0
votes
4answers
61 views
PHP - checkbox form wont return itself as clicked
I have a variable called present, I also have a checkbox, I need to make it so that if the checkbox is checked, then someone submits the form, the $present variable will change to a value of 1. Right ...
-1
votes
2answers
16 views
Aside from a table of textboxes, how can I ask for a user's weekly schedule?
Aside from creating a table of textboxes that asks the user to enter their class for each hour, how else can I ask them? I feel like it's a lot of work typing in course codes for each timeslot that ...
-1
votes
1answer
32 views
Javascript input form
I have this datepicker function:
!!!5
html
head
link(type='text/css', href='http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css', rel='stylesheet')
...
-3
votes
0answers
30 views
Parse error: syntax error, unexpected '@' in my php [closed]
everyone.
I just new to php, and now I am trying some tutorial codes.
Now I want to analyze the file user uploaded,
so this is the code named fileInfo.php:
<?php
if ($_FILES["file"]["error"] > ...
0
votes
2answers
32 views
What attributes does bgcolor support [duplicate]
The bgcolor tag takes different words and changes the color.
What actually happens? Does it take the ASCII values?
<html>
<head>
<title> Background Color ...
-6
votes
1answer
44 views
how to change an image without reloading the page using jquery/ajax
Hey guys i don't have any code to show for this but the main thing i want to know here is how i can change the image of the "profile picture" div after upload without reloading the page..
but just ...
0
votes
3answers
24 views
Html attribute with echo
I have the next html element:
<div class="bar bar-success" style="width: 20%;"><? echo $pass; ?></div>
Now, I want that the width element would changed according to my echo ...
0
votes
1answer
40 views
Multiply a css class div element in Jquery or Javascript without the HTML
My problem is simple,
I have a div class element looking like this:
<div class="square">
<div class ="inner">
<img src="square.jpg" alt="square">
</div>
Now, what I ...
0
votes
1answer
17 views
Moving method outputs from a java class to HTML
I'm programming in Java and have a simple hello-world type class which can provide outputs to the console quite happily.
What I would like to do is transfer the outputs of this, or a similar class, ...
0
votes
1answer
35 views
HTML5 Form elements and styles for mobile device
I am not using jQuery mobile for my mobile website, however i really like some of the form elements used.
I am struggling to find how to create the following form elements: -
Flip switch
Checkbox ...
0
votes
1answer
17 views
C# encoding Shift-JIS vs. utf8 html agility pack
i have a problem. My goal is to save some Text from a (Japanese Shift-JS encoded)html into a utf8 encoded text file.
But i don't really know how to encode the text.. The HtmlNode object is encoded in ...
0
votes
1answer
22 views
jQuery contentEditable not working - Internet Explorer 8 - edit table items
I need to get this code working in Internet Explorer 8:
http://jsfiddle.net/tYtQV/5/
$("tbody tr td").bind("click", onClick);
function onClick(e) {
if(e.currentTarget.contentEditable != null)
...
0
votes
0answers
9 views
how to make custom templates in Koken
I'm using Koken and would like to customize the template for text entries by putting the date at the top of the entry.
I hacked a call to new Date() into the core template file ...
2
votes
6answers
36 views
CSS: Align image right bottem of a div filled with text
I'm making myself a website but I'm a little stuck on an issue I am having.
Inside a div I have a block of text with variable height.
At the right side of the text I want to position an image width a ...
0
votes
2answers
21 views
Multiple transitions
Yesterday I got my problem solved about jquery, which didn't load correctly. Today I struggle with yet another problem: two transitions for one element. The first transition starts when the page has ...
0
votes
1answer
28 views
Setting text for external HTML file
I am trying to set text for a div which is located in external html file, but when I give the ID of that div, it is not recognized, what should I do?
I load the external HTML file like this:
...
1
vote
0answers
14 views
Displaying ASCII control characters in HTML
For a console emulator I'm trying to be able to display ASCII characters less than 32, without them having any special interpretation. I want to use the glyphs from VGA code page 437. I'm using a ...
-5
votes
2answers
34 views
CSS indentation not working
Can someone give me an idea how indent the text here in CSS (CLICK HERE) as shown here:
So it indented as shown in the image.
HTML:
<div class="aText">
<div>Test One 01</div>
...
0
votes
1answer
15 views
Sprite Image Resize - Make Responsive when resizing browser
I am having issues making the sprite I have resize, when I resize browser window.
The remiander of the template is repnsive including the Nav Menu.
The sprite remains fixed and sticks out of the ...
0
votes
1answer
10 views
Change iframe parent while playing embedded youtube video
I want to change the parent of an iframe which is used for embedding a YouTube video.
When I change the parent:
Firefox and Chrome: Player stops playing and displays a new (stopped) player in new ...
0
votes
1answer
19 views
How to write a cookie to remember a username in JavaScript
I am working on a login page for a project and I am wondering how I would go about setting a cookie just to remember the username ?
0
votes
3answers
18 views
HTML changing from Windows to Mac
So i have written a portfolio website, however i am having some trouble. I wrote the site on a windows 7 machine however, at home i use a mac. The windows machine is a 15" screen and the mac a 13" ...
-2
votes
0answers
33 views
Codeigniter dont recognize post value
I have a simple html form and some php that input the POST variables into a mysql database. However, I noticed that the form can't parse validation even if data exist.
Validation rules:
...
1
vote
0answers
36 views
Two columns, elements within the two columns stacked using css
I have searched everywhere for an answer, but I don't think I'm asking the question in the right way. I have two columns, but I need the elements to stack and cant seem to make anything work. I also ...
1
vote
3answers
25 views
Vertical align multiple lines break out
I want to vertically align the text in my links like this :
The whole block are links, and they are all the same size. I tried to set the line-height to the height of the container to center it ...
1
vote
2answers
25 views
Setting a panel to visible using javascript
How can I make a <asp:Panel> visible using javascript?
I have done the following but get an error (Cannot Read property style of null)
<asp:Panel runat="server" id="panNonAfricanCountries" ...
1
vote
4answers
35 views
Change image width based on browser width
On this site http://www.google.com.au/about/datacenters/gallery/#/tech
Google show a gallery of images and then each image resizes so that x amount of images fit across the page. It also has a ...
0
votes
4answers
29 views
solving table rounded corner css
i have this css rule for rounded corner
th, td { padding: 8px;
background: #E8ECE0;
text-align: center;
border: 1px solid #444;
border-bottom-width: 0px;
}
thead { ...
-1
votes
4answers
39 views
Simulate button effect with CSS background-image?
I was looking for some ways of putting kinda-custom buttons on site, using my own images.
And than I found out some interesting moment on Formspring site. There is just one image file, with all ...
0
votes
2answers
22 views
Show formatting in input text html
Is there anyway to show text in input text and not as hmtl. I mean:
This is</b> bold"/>
I would like to see in the text input This is bold
for the output of input text.
Is there any way to do ...
0
votes
0answers
8 views
TCPDF Image alignment is not working
Portion of HTML from my code is mentioned below:
If then at is equal to:
I'm passing this HTML as input to TCPDF to generate PDF file.
When PDF is generated ...
0
votes
2answers
35 views
Using regexes to process HTML of a *known structure*
We're using a custom framework built on top of ASP.NET MVC to generate HTML from our object models at runtime without writing any views. This approach has been successful in allowing rapid application ...
0
votes
5answers
54 views
CSS & HTML Margin
I'd like to move these two arrow images so it close to each other, at the moment I have them both quite apart. Here is what I need:
http://postimg.org/image/s4dv20xy1/
And here is my working ...






