HTML | DOM console.info() Method
The console.info() method in HTML is used for writing a message in the console. It indicates an important message about any element or object. The message is sent as a parameter to the console.info() method.
Syntax:
console.info( message )
Parameters: This method accepts single parameter message which is mandatory and used to specify the information to be written on the console.
Below programs illustrate the DOM console.info() method in HTML:
Example 1:
HTML
<!DOCTYPE html> < html > < head > < title >DOM console.info() Method</ title > < style > h1 { color:green; } h2 { font-family: Impact; } body { text-align:center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM console.info() Method</ h2 > < p >To view the message in the console press the F12 key on your keyboard.</ p > < p > To view the message, double click the button below: </ p > < br > < button ondblclick = "info_console()" > View Message </ button > < script > function info_console() { console.info ("GeeksforGeeks is a portal for geeks."); } </ script > </ body > </ html > |
Output:
Console View:
Example 2: Displaying an object while using DOM console.info() method
HTML
<!DOCTYPE html> < html > < head > < title >DOM console.info() Method</ title > < style > h1 { color:green; } h2 { font-family: Impact; } body { text-align:center; } </ style > </ head > < body > < h1 >GeeksforGeeks</ h1 > < h2 >DOM console.info( ) Method</ h2 > < p > To view the message in the console press the F12 key on your keyboard. </ p > < p > To view the message, double click the button below: </ p > < br > < button ondblclick = "info_console()" > View Message </ button > < script > function info_console() { var MyElement = { Product : "Coca Cola", Type : "Beverage" }; console.info(MyElement); } </ script > </ body > </ html > |
Output:
Console View:
Supported Browsers: The browser supported by DOM console.info() method are listed below:
- Google Chrome 1 and above
- Edge 12 and above
- Internet Explorer 8 and above
- Firefox 4 and above
- Opera 10.5 and above
- Safari 3 and above
Please Login to comment...