answersLogoWhite

0


Best Answer

To add javascript (Google ads) on blogger post you should keep a note of these pointers:

1. Open Post and go to HTML view.

2. Complete script should be in 1 line. Remove all line Breaks.

3. If you are using some onclick or other events then your javascript should be in double quotes.
eg. 5xDeals

4. If your script is too long, then you can put it somewhere on web and call it on your post.

I've used all these tips while placing ads on www.5xdeals.com.. You can check that out...


Microk

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: How do you insert HTML and JavaScript in Blogger post?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you create a registration form using css and javascript in HTML?

Form is an HTML construct. The first part tells the server to Get or Post. To format with CSS is one thing, to make it interactive, use JavaScript. I will give a URL below:


How do you display data in other HTML page retrieved from post method?

You can used various methods for retrieving data in HTML. JavaScript, Servlets etc are some ways to get data.


How do you insert pictures on sniff on wolfhome?

Go to tinypic.com, pick your file, and use the html code and post it on your sniff when you are done.


What is document.getElementById in javascript?

document.getElementById() is a JavaScript method that returns a reference to a DOM object identified by the value passed to it. For instance, if you can a form with the following HTML code.... <form method="post" id="theForm"> You would be able to reference the form by assigning a variable to the returned value of document.getElementById(). Such as: var myForm = document.getElementById("theForm"); You could them use the other DOM methods to manipulate this object (adding CSS styles, adding and removing children, etc.)


How do you change post title background color with template designer?

And how can I give my post title a colour background?" The first thing I thought of trying is to go to LAYOUT > FONTS AND COLORS as described in my previous post Changing fonts and colors for New Blogger (xml). However, Blogger for better or for worse is constantly evolving and the LAYOUT tab is no more, replaced by a DESIGN tab and apparently have moved the template designer from Blogger in Draft to standard Blogger. I believe that it is still possible to edit the template direct to add CSS (Cascading Style Sheet to control the post title background but found that Blogger Template Designer has provided a "Advanced" option to do that via the template designer with INSTANT PREVIEW. And apparently some of the functions of the new Blogger Template Designer can be used even if the template you are using for your blog has not been designed with Blogger Template Designer So to change/control post title background color: 1. Sign into Dashboard 2. Click DESIGN tab to get to LAYOUT 3. Click TEMPLATE DESIGNER sub-tab 4, Click ADVANCED at the top-left corner 5. Scroll down to bottom of sub-menu and click ADD CSS (see screen shot below): and there I add this line of CSS: .post-title {background-color:green;} and immediately below the change is previewed (see screen shot below and noticed background color has been changed to green. For more color options, refer to HTML color codes: 6. If you are happy with the changes, click APPLY TO BLOG to save the changes to your template:

Related questions

Can you post photos on blogger?

You can post photos on blogger. If you use the insert image button on the Blogger toolbar you will see the option to insert an image. You can post from a picture on your computer, URL, or something previously uploaded to Blogger.


How to remove subscribe post comments atom feed in blogger?

Go to your blog Dashboard -> Theme -> Edit HTML Blogger Theme Edit HTML Step-2: Search the following code and delete it Blogger Post Atom Blogger Post Atom The above code will remove the Subscribe to: Post (Atom) links as shown in above screenshot. Step-3: Search the following code and delete it Blogger Post Comment Atom Blogger Post Comment Atom The above code will remove the Subscribe to: Post Comments (Atom) links as shown in above screenshot. Step-4: Now save the template and enjoy! Alternatively, you may search and delete the following codes to remove both (post/post comments) atom links from all pages of blogger blog. () Now, save your template. Hurray! There is no more Subscribe to Post/ Post Comments (Atom) text links in your blog.


How do you create a registration form using css and javascript in HTML?

Form is an HTML construct. The first part tells the server to Get or Post. To format with CSS is one thing, to make it interactive, use JavaScript. I will give a URL below:


How do you post in blogger using HTML?

<div id="header"> <div id="footer"> <div id="content"> <div id="sidebar"> <div class="post">


How do you display data in other HTML page retrieved from post method?

You can used various methods for retrieving data in HTML. JavaScript, Servlets etc are some ways to get data.


How do you insert pictures on sniff on wolfhome?

Go to tinypic.com, pick your file, and use the html code and post it on your sniff when you are done.


How do you add videos and pictures in your blog at Blogger?

This is very easy to post Videos and Pictures. When you log-in your blog. First Click new post. Type Post Title. Then click the Add media. There from you can Add Pictures and Supported Video File. Then you can Insert your post and Published.


How do you change the date on blogger post?

Date can be changed on published posts on blogger with following below steps:1. Go to Blogger dashboard > Posts2. Click on "Edit" of desired post to be changed3. Go to Post settings > Published on (top right corner of opened post)4. Pick up the date you want to see on the post and click on "done" button5. Hit the update (orange button) .Now, the updated date can be seen on blogger post.Thanks


How much entries can you post in a Blogger?

There is no limit on the number of posts in blogger. However, the number of labels are limited to 5000 (that are uniqu).


How do you publish something new in Blogger?

In Blogger Post is Very Easy. First You will sign in you Blog. Click New Post. Type Post Title. Then Type your Information with Image and Click Publish. After Click Publish you will Click View Post and See.


How can i Have php post to self with mysql?

Mysql is an Database where Data from HTML forms will be inserted to it by some scripts like ASP 3 (classic), ASP.NET, PHP, ColdFusion and... What you need is a form (By HTML), an Database and table in Mysql and PHP to insert data from your form to the table. mysql insert command is: INSERT INTO table_name_here (column1, column2, ..) VALUES (value_of_column_1, value_of_column_2, ...)


How to pass form data from one page to another by using get and post in HTML?

Generally, you would use some breed of a server-side script:PHP(what i use!!!), ASP and i think you might be able to use Javascript and Perl as well!!!