Widget:Advanced iframe

From Mibbit Wiki
Revision as of 15:20, 26 February 2008 by HerculeP (talk | contribs) (iframed example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

here an example how to integrate a chat window into your site (stored as "myMibbit.htm"):

<html>
<head>
<style>
body{
  font:1em Arial,sans-serif; padding:0; margin:0;
  background:#070707; color:#fff;
}
iframe{
  width:100%;
  height:650px;
}
</style>
</head>
<body>
<iframe scrolling=1 frameborder=0 
 src="http://www.mibbit.com/?server=irc.mibbit.com&nick=...&channel=%23yourChannel">
</iframe><center>
<h3>choose your nick name and click on [Connect]</h3>

</body></html>

if you link/open this in a new window you avoid unintentional logging out when hitting the back button/key:

<a href="myMibbit.htm" target="_blank">myMibbit</a>

--HerculeP 15:20, 26 February 2008 (UTC)