The document-body tag has no wiki summary.
0
votes
2answers
26 views
Multiple HTML Files In One HTML File?
Is it possable to have a part of a html file visable until a link text is pressed and the original is removed?
i have tried to use a program to do it but all it does is comprees them into one .exe ...
0
votes
2answers
46 views
body in a php file
I created a custom index.php for a wordpress theme. I just renamed the .html to .php file. Everything seems to work fine except there are extra characters printed if I run the page.
These characters ...
2
votes
2answers
54 views
How to set style with LESS according to body id
Is there any option to set style for some element according to body id with LESS?
I need to do something like this:
@body_about = #about_page;
img when (isclass(@body_about)){
// some style
}
...
0
votes
3answers
179 views
Send mail smtp gmail from address showing the gmail address
In C# I have a method that sends an email via a gmail account.
When I open the email in microsoft outlook the from address is shown as the gmail address and not the strFromAddress that I use in the ...
0
votes
0answers
215 views
Embedding image in html body want show as well
I need to send mail with which have mixture of pictures and texts. My problem is that can't send image inside of body, it always appear at bottom op body.
So my question is how to send write position ...
2
votes
1answer
86 views
How to calculate the same body height in all browsers with jQuery
I am having a problem that I don't know how to solve.
Basically, I am integrating a ScrollToFixed jQuery plugin and for calculating a limit, I use
jQuery( document ).height() - jQuery( ...
2
votes
1answer
138 views
G-WAN PHP servlet blocking with empty reply
I send small payloads of various sizes as "200" replies but once in a while the payload is empty (no HTML body) and G-WAN takes a long time to answer those requests.
Can you tell me what's happening ...
1
vote
1answer
54 views
What component to use to send mail with any kind of body?
I made a mail sender in C# but I'm having trouble with the body of the mail. It only sends the texts without pictures, links and other elements. Not to mention, I used RichTextBox for that purpose.
...
0
votes
2answers
159 views
My body background color disappears when scrolling
I hope someone can help. I've set my body height property to 100% which is fine when all the content is on the screen at one time. However when i need to scroll (when minimizing the window) the body ...
0
votes
1answer
40 views
String.Replace not working on long html code. (Mail.Body)
So, I just came across a minor problem, given a mail object:
Mail = new MailMessage();
Generating it's body:
Mail.IsBodyHtml = true;
Mail.Body = GenerateHTMLFoo(); // it's a stringbuilder
Now ...
1
vote
1answer
64 views
How to stop animation after one body click with jQuery
So, i have some animation actions, this is for my login panel box:
$('.top_menu_login_button').live('click', function(){
$('#login_box').animate({"margin-top": "+=320px"}, "slow");
});
...
4
votes
3answers
654 views
Find body tag in an ajax HTML response
I'm making an ajax call to fetch content and append this content like this:
$(function(){
var site = $('input').val();
$.get('file.php', { site:site }, function(data){
mas = ...
3
votes
3answers
305 views
When do you put Javascript in body, when in head and when use doc.load? [duplicate]
Possible Duplicate:
Where to place Javascript in a HTML file?
Should I write script in the body or the head of the html?
I've always wondered, mainly because when creating pages I always ...
2
votes
3answers
155 views
How to find page width in Opera 12 (for Desktop Windows)?
I want to access full page width & height in Opera. Note I am not asking about Viewport's height or width, I want page's/document's width & height. I am using Opera 12.12
I have tried the ...
0
votes
2answers
101 views
Canvas takes the whole document body in html and make it hidden but drawable
I found this in a stackoverflow question on how to draw in canvas http://jsfiddle.net/ArtBIT/kneDX/ and now I want the canvas to cover my whole html page. For example:
<body>
<div ...
0
votes
0answers
48 views
Dynamic site where content loads after “window.load”- body not loading in IE and some apple devices
I am creating this site:
www.pickmixmagazine.com/wordpress
It's fine on all other browsers but IE and some apple devices do not display anything at all on the homepage
I looked into IE's error ...
2
votes
2answers
513 views
Append text WebEngine - JavaFX
How can I append text to webengine?
I try this
public TabMessage(String title) {
super(title);
view = new WebView();
engine = view.getEngine();
...
0
votes
1answer
73 views
Can you create a second <body> on a html page? (Website in website)
Ok, my title may sound confusing, but I don't know a better summarized way to describe it. (feel free to change).
The thing is: I've built a wayfinder for school, as a school project. I want to use ...
0
votes
1answer
442 views
Expose Body tag from Master Page to Content Pages in ASP.NET
I want to expose the <body> of my Master Page to my Content Pages. Therefore I do:
Master.aspx
<body id="MasterPageBodyTag" runat="server">
Master.aspx.vb
Public Property Messaging() ...
0
votes
1answer
65 views
View full http request data packet source in jquery ajax
How can i get the full plain http request source (all the data packet: headers + body) that jquery.ajax() sends? I need it to display debugging information (content, size, ecc..)
Notice: i don't need ...
-1
votes
1answer
100 views
<body> not starting at the top of page [closed]
I have body not starting at top of the homepage (the issue is clear using firebug, not to naked eye!).
Anyone any ideas?
Thanks
1
vote
0answers
55 views
Appending to $('body') reloads images
The webpage has some images. After loading the document the images are fully loaded. Some seconds later they disappear and then they come back. I've tracked down the problem to this line.
...
2
votes
4answers
104 views
Scroll bar appearing at the bottom of webpage
I have a page and cannot understand why there is a bottom nav scroll bar appears.
The coffee market
It appears that some element is off screen but I cannot understand what!
Solution welcome!
Thanks
1
vote
5answers
349 views
the <script> tag with the jQuery library reference must be inside <head> or <body> tag? [duplicate]
Possible Duplicate:
Where is the best place to put <script> tags in HTML markup?
I always thought that it's better to put it in the head (maybe because it is loaded first in the head ...
3
votes
2answers
456 views
scrollTop() returns 0 in Firefox, but not in Chrome
Not sure if there's another question regarding this, if so I apologize and please don't release the hounds.
Using the html5 doctype and doing a quick console.log off my scroll listener that tells me ...
0
votes
2answers
108 views
add live ID to BODY with PHP
I'm using the php code:
<body id="<?php echo str_replace("index.php?","",(basename($_SERVER['REQUEST_URI'],".php"))); ?>">
and
<?php
if(isset($_GET['start'])){
...
3
votes
1answer
85 views
Why my body's background color leaks out of its boundaries?
In this page I have a 200x200 body with a blue background.
However the background is applied to the whole window?
Why is this so?
Here is the code: ...
1
vote
1answer
193 views
GWT tutorial body padding
GWT tutorial - StockWatcher.
I am overriding StockWatcher.css:
body {
padding: 10px;
}
But no padding is applied, at least on the left, and the whole frame is flush to the left side.
0
votes
1answer
160 views
Body Background Changer?
Alright here it is.
Simply, I want to be able to have the background of the body via CSS fade out and change every so often and then loop.
Any ideas how I can achieve this with CSS and jQuery?
...
0
votes
2answers
95 views
expand div element inside centered body element
The body of my html page is placed in the middle of the page as shown below:
<body style="margin:0 auto; width:75%">
Now I want to put a strip with a background color to expand along the ...
0
votes
4answers
200 views
How do I disable body.blur() in IE8?
I work on an enterprise web application that runs in IE8. It appears blur() is being called on the body causing the IE window to be sent to the background. Unfortunately this code is in a portion of ...
0
votes
1answer
431 views
CSS body `background-image` aligned right on Chrome, Safari (webkit)
I've been struggling with a problem on webkit browsers (chrome & safari) while adapting a website for right-to-left readers (Arabic & Hebrew languages). Finally I reported this as a WebKit ...
0
votes
1answer
93 views
Why are the last 2 chars of my NodeJS shred POST request getting stripped?
I am having a problem submitting a UTF8 encoded text file in a POST request using NodeJS "shred"
The text content I am trying to post looks fine on the client side, I know because I console.log it ...
0
votes
2answers
262 views
Floating divs don't expand body width
I'm trying to develop a horizontal web page, with fixed height and variable width.
In order to get it, I need a row of floating <div>s to expand the <body> width.
|------------- body ...
5
votes
3answers
444 views
<html> and <body> Tags 100% Height Fail
I have an application which requires me to use CSS to set the height of the <html> and <body> tags to 100%, like this (JSFiddle version):
html, body {
display: block;
height: 100%;
...
0
votes
0answers
119 views
How to have a text box when page loads [closed]
I've been looking around for a JavaScript that loads a text box and i fiddled with the
<script type="text/javascript">
function loadnotif()
{
alert ("Alert Message")
}
</script>
<body ...
3
votes
5answers
235 views
Will style css tag render in body?
I am using a CMS and apparently it has a bug that will not allow me to add any content to the <head> of a blog post. It inserts everything into the body which in most cases that works okay but ...
0
votes
2answers
161 views
Replace padding of body using jquery
I am trying to replace the padding of the body when an element is closed using jquery. But, I am having trouble accomplishing this.
My close button works fine, just trying to figure out how to ...
0
votes
1answer
59 views
Finding a caret inside a body tag
How can I find my caret position inside a body tag?
i know i can find it in text area and divs but can't do so inside an iframe body
0
votes
1answer
324 views
Orchard - add class or id to the body using fields
My questions is - how do I add a class or id to the body tag using a text field within Orchard?
So if I enter the word "product" in the text field then the result should be <body ...
0
votes
3answers
1k views
How prevent inheriting “position: relative” CSS
my body style is like below :
*
{
padding: 0px;
margin: 0px;
}
html, body
{
background-color: #006F92;
position: relative;
direction: rtl;
font: 9pt Tahoma, 'b yekan' , 'b ...
1
vote
2answers
636 views
uiwebview javascript HTML get user facing body text only
I have the following html source loaded in a UIWebView
I want to extract
text1
text2 text2
text3 text3 text3
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" ...
0
votes
1answer
149 views
jquery .append() doesn't work on windows
I'm trying to generate a printable version of kind of a contact form. By clicking the "#drucken"-button I'm trying to hide the content-wrapper and append the content of the form to the body with a new ...
0
votes
0answers
46 views
“Body.l” in Chrome developer tools console
Does anyone know what causes Body.l to appear in the Chrome developer tools console?
Oddly, I can't clear it. Would like to understand why that is too.
Thanks,
tim
0
votes
2answers
36 views
why does the top button still link to the top of the page?
I have a button <a href="#top">Top</a> linking to the top of the page <body id="top"></body>
but when removing the id of the body the button still works. I cant work this out, ...
0
votes
1answer
448 views
Change background image on hover to every image gallery links
How do i change the page background when i hover to every image link on the page. I would like to dynamically change the page background according to every image on the page. Please have a look at the ...
-3
votes
2answers
860 views
Dynamically change body content
How do I dynamically change the body content of an html page when a link is clicked?
So I have 3 html pages that looks like this:
<li><a id="homeContainer" ...
0
votes
1answer
71 views
file uploading in asp without ActiveX class
Is there a way to check file size on the client (without the use of ActievX which also errors out), before it is passed back to the server? in asp
-1
votes
4answers
1k views
Javascript - How to do a splashscreen?
I am looking for a javascript function that will delay by webpage body to load, i want it to display my html background for 1 or 2 second and then display body content.
need help.
Thanks
0
votes
1answer
366 views
set div to 100% height of parent that IS NOT the body
After a few days of hounding google for an answer, I am hoping some genius out there is able to help me on this tricky problem im having.
Overall what I am trying to achieve is a 1 page website with a ...

