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
3 views
asp.net - maxlength not working
I have a textbox as an input - markup below - this is a aspx page - see the markup below:
<input id="Number" runat="server" type="text" maxlength="6" />
However on screen - after I type in 6 ...
0
votes
0answers
4 views
How to use html in asp classic email object body?
I want to use html in my email body in my classic asp code. This is code:
Dim objCDO
Set objCDO = Server.CreateObject("CDONTS.NewMail")
objCDO.To = "[email protected]"
objCDO.From = ...
0
votes
0answers
7 views
Getting rid of bullet list decoration in iphone Apple Mail
I am still fighting with newsletter implementation on iPhone (tested with Apple Mail)
The following code works perfectly in Outlook2007. On the iPhone, unfortunately, the bullet list decorations are ...
0
votes
0answers
21 views
Include html in html through javascript
My question is similar to this one
How to include an html page into an html page
But the answers are not working for me. Objects and iframes create a box with scrollbars, which I don't want, and if I ...
-1
votes
0answers
19 views
How to open a new window/tab without user interfaction and without getting it blocked
I've an <input type="text" /> which shows search suggestions from some data source.
The problem occurs when the user is redirected to some URL and in a new window (i.e. window.open) on [ENTER] ...
1
vote
1answer
29 views
Undefined Index with PHP code
( ! ) SCREAM: Error suppression ignored for
( ! ) Notice: Undefined index: q_sold in C:\wamp\www\aaa\mup.php on line 93
Call Stack
# Time Memory Function Location
1 ...
0
votes
1answer
27 views
Clear webpage after printing
I am trying to print the content of a particular DIV and after printing the DIV the webpage has to be fixed properly but its just displaying only the DIV I just printed and hides the actual webpage. ...
0
votes
0answers
9 views
pasting excel data into html text input
I'm trying to paste a single column from excel into a text input. Firefox does this without problem, but IE only pastes the top cell of the column.
Using window.clipboardData.getData("Text"); and ...
0
votes
1answer
10 views
Dynamically add field in JSP
I have a simple jsp form for users to enter their info but I need a way for them to dynamically add a field for additional emails and preferred location that will then be submitted to the servlet. ...
-2
votes
1answer
64 views
Returning PHP results to original html page
I would like to return the value $newsum to the col div which comes from a php calculation to db results. I would like to keep the html and php files separate. However, when that is done I dont get ...
0
votes
4answers
39 views
Select div where text is equal to
I want to select the div where the value is for ex. "5".
This is my situation:
I have div's like this:
<div class="element">
<div class="number>5</div>
<div ...
0
votes
0answers
9 views
Extended breadcrumbs with PHP
I took some code from another answer to get a very simple breadcrumb on my website. It works ok but what I need is to extend it to include more than just the home page and the current page.
currently ...
0
votes
1answer
34 views
create a file and insert a line
I want that when the user presses the div, a new file will be created and the line: Testing 1, 2, 3. will be inserted.
I tried the next thing:
<div id="rect0" onclick="CreateFile();" ...
0
votes
1answer
38 views
CSS standardized padding
I have the following CSS:
.form td:not(:last-child) {
padding-right: 15px;
}
.form td:first-child {
padding-left: 3px;
}
.form td:last-child {
padding-right: 5px;
}
input,select {
...
0
votes
1answer
17 views
jquery Click To EDIT improving suggestion needed
I have an Example what I get this from one of my previous post .I am trying to upgrade this with my need but I failing . I guess it's because of my lack of knowledge in jquery and JavaScripts . But I ...