Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
body
- Page 1
Re: Cannot run exe from asp.net
Programming
Web Development
1 Week Ago
by lennyli
…" %> <!DOCTYPE html> <html> <
Body
> <% Dim objShell Dim command Dim result ' Path to…("Executable executed with result: " & result) %> </
body
> </html>
Re: Contact form does not working
Programming
Web Development
1 Month Ago
by Biiim
…;Subject = 'Survey Form filled out'; /* Set the mail message
body
. */ $mail->
Body
= 'some message'; /* Finally send the mail. */ $mail->send…
Re: How To Send MYSQL Data To An Email
Programming
Web Development
2 Months Ago
by Biiim
Here's the code I've been using for about 15 years now - but a bit more simplified: function dbConnect($type = ''){ $conn = mysqli_connect( DBHOST, DBUSER, DBPASS, DBDB); if (!$conn) { echo "Error: Unable to connect to MySQL." . PHP_EOL; echo "Debugging errno: " . mysqli_connect_errno() . …
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
1 Month Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
body.onload += "XX"
Programming
Web Development
20 Years Ago
by NimbusSoftware
…trying to append a function to the
body
tag's onload event... [CODE]<
body
onload="Do_This();"...> ...… ... <script....> document.
body
.onload =+ " And_This();"; alert(document.
body
.onload); </script>[/CODE] The …both funcions to run on the onload event. The
body
tag is in a php "header"…
Re: body.onload += "XX"
Programming
Web Development
19 Years Ago
by alpha_foobar
…lt;/title> </head> <
body
onload="Do_This();" onunload="Do_This();">….onunload); } loadBody(); unloadBody(); </script> </
body
> </html> [/CODE] What happens here is…with the initially defined onload function forming the
body
of the function. This way the javascript …
Re: body.onload += "XX"
Programming
Web Development
20 Years Ago
by tgreer
… them with the "&&" operator: [code]<
body
onload="return (Do_This() && Do_That())" >[/code… include the "And_This()" function in a separate script
body
at the very end of your document. It will run…
Re: body.onload += "XX"
Programming
Web Development
14 Years Ago
by rajarajan2017
…() { alert(8); } </script> </head> <
body
onLoad="Do_This();"> </
body
> </html> [/CODE]
Body Background Issue
Digital Media
UI / UX Design
16 Years Ago
by Borderline
…>FURTHER FLIGHT</title> </head> <
body
> <?php include($_SERVER['DOCUMENT_ROOT'].'/style/mainmenu.php');?>…; </
body
> </html> [/CODE] CSS: [CODE]
body
{ background: url("/media/background.gif…
body bgcolor in my tables and td's
Digital Media
UI / UX Design
15 Years Ago
by toddsmith
…external style sheet, but when I tested a
body
bgcolor all my table elements inherited the same … [code]<style type="text/css">
body
,td,th { font-family: Arial, Helvetica, sans-serif;… font-size: 14px; color: #000000; }
body
{ background-color: #f8c762; } td:white { background-color:#FFFFFF; } …
Re: body.onload += "XX"
Programming
Web Development
14 Years Ago
by louiscos77
Hy NimbusSoftware, well here is a code for make two functions or more in the
body
tag. [CODE=javascript]/* onloadfunctions.js */ function Do_This() { alert(7); } function And_This() { alert(8); } window.onload=function(){ Do_This(); And_This(); }[/CODE] This can be a good form for solve the problem.
Body 8px Margin needs to go
Digital Media
UI / UX Design
10 Years Ago
by Bensirpent07
… a CSS reset, but some reason my
body
on my website ([Click Here](http://www.…@charset "utf-8"; /* CSS Document */ html,
body
, div, span, applet, object, iframe, h1, h2, h3…, footer, header, hgroup, menu, nav, section { display: block; }
body
{ line-height: 1; } ol, ul { list-style: none; …
Re: Body Background Issue
Digital Media
UI / UX Design
16 Years Ago
by MidiMagic
Are you applying it to the
body
, or to the objects within the
body
. It must be applied to all of the objects you want to see the background through. Note that it doesn't work with form text boxes.
Body Text lost when sending hotmail
Hardware and Software
Microsoft Windows
21 Years Ago
by ITXP
… sent and the recipient does get a message however the
body
text is completly missing leaving a blank email. Looking in… sent items the
body
text is full of html code. The computer is running…
<Body onload= > question
Digital Media
UI / UX Design
20 Years Ago
by maj
Hi there, I have some java script menus created and I'm calling them from the <
body
onload> tag as follows: <
body
onload="initjsDOMenu()"> Because of this, the menu is the last thing to load on the page. I want it to be the first thing to load. Anyone know what I can do? Thanks for any help, Maj
Re: <Body onload= > question
Digital Media
UI / UX Design
19 Years Ago
by vivek vermani
… I'm calling them from the <
body
onload> tag as follows: <
body
onload="initjsDOMenu()"> Because of…
Body content layout issues
Digital Media
UI / UX Design
15 Years Ago
by Elehas
… having some huge issues with the layout of my main
body
area. The attachment shows how it's suppose to look…: absolute; top: 223px; left: 214px; width: 541px; height: 524px; } /* Main
Body
Content */ .content-article { color: #4d4d4d; font-size: 10pt; width: 348px…
Re: Body content layout issues
Digital Media
UI / UX Design
15 Years Ago
by ablitz
… having some huge issues with the layout of my main
body
area. The attachment shows how it's suppose to look…: absolute; top: 223px; left: 214px; width: 541px; height: 524px; } /* Main
Body
Content */ .content-article { color: #4d4d4d; font-size: 10pt; width: 348px…
body onload ... popup window
Programming
Web Development
12 Years Ago
by green-script
…;,1000)'; tmp+='}'; tmp+='<\/script></head><
body
onload="showNowTime()">'; tmp+='<font size="…;>mclock</div>'; tmp+='</font></
body
></html>'; var newwindow2=window.open('','name','height…
Re: Body 8px Margin needs to go
Digital Media
UI / UX Design
10 Years Ago
by JorgeM
Try placing all of your link elements (stylesheet references) in the head section of the page, not the
body
. In addition, place the CSS Reset first above all of the other link elements.
Re: Body 8px Margin needs to go
Digital Media
UI / UX Design
10 Years Ago
by Bensirpent07
I tried this but it still didn't work, the only reason I put the CSS links in the
body
is to see if that would work.
Re: Body Text lost when sending hotmail
Hardware and Software
Microsoft Windows
21 Years Ago
by ITXP
… saving a draft copy. With both of these methods the
body
text is not there and he described HTML code in…
Re: <Body onload= > question
Digital Media
UI / UX Design
20 Years Ago
by Comatose
instead of sticking it in the
body
onload, have you tried calling it in the header of the page: [CODE] <HTML> <HEAD> <SCRIPT LANGUAGE="Javascript"> function some_function() { } some_function(); </SCRIPT> </HEAD> <!-- The Rest Of The Page --> [/CODE]
Re: body onLoad not working in IE7
Programming
Web Development
16 Years Ago
by Atli
… because the included page also contains <html>, <
body
> and <style> tags, IE won't parse… index.css file and remove the <html> - <
body
> tags, so that the welcome file only contains the…
Re: BODY onload is not working
Programming
Web Development
14 Years Ago
by fxm
[QUOTE=phingko;1212669] [CODE]<
body
onload="sendRequest(Display)">[/CODE] [/QUOTE] [ICODE]<
body
onload="sendRequest('Display')">[/ICODE]
Re: Body Detection and Recognition
Programming
Software Development
14 Years Ago
by dusktreader
… to first be able to segment the structure of the
body
. This would most likely require some sort of edge finding… would need to solve are: 1. Isolate the bodies or
body
parts using some sort of edge finder or region segmenter…
body font in safari changed suddenly can't fix it
Hardware and Software
macOS
20 Years Ago
by angela
… top. I'm running Panther. All of a sudden the
body
text of the web pages has changed to something that…
body onLoad not working in IE7
Programming
Web Development
16 Years Ago
by gailhands
Hi, Really new to AJAX, attempting to load the first page content into a div on the website loading using an onLoad property to the
body
tag . This is working in FF but not in IE7. Any help much appreciated! Thanks Gail. ([url]http://www.pure-connections.com[/url])
Re: body onLoad not working in IE7
Programming
Web Development
16 Years Ago
by Atli
… <script> block right before you close the </
body
> that does what the onload is supposed to do…
Re: body onLoad not working in IE7
Programming
Web Development
16 Years Ago
by Atli
… page, this page has all the <html>, <
body
> and <style> tags, which will probably cause…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC