Jump to content

dlaidi

Members
  • Posts

    9
  • Joined

  • Last visited

Posts posted by dlaidi

  1. Can someone help me, i learn to create a page and i have a problem.i want to create a page with iframe and some link outside the iframe.What i want is when i click on the link, the content of the link will be displayed in the iframe.I know that i can used target="nameOfIframe" to do that. But can i use "onclick" to do it.What is the code for that?Thanks in advance for the help.

  2. with firefox, when i click on the link, the google page is opened not in the iframe, but the whole page change to google page. But when i used IE, there's no problem. Or maybe there're some setting in Firefox that i have to change?

  3. main.html
    <html><head>	<title>...</title>	<meta http-equiv="Content-type" content="text/html; charset=UTF-8" /></head><body>	This is the main page	<br/>	<iframe src="framedpage.html" style="width:100%;height:400px"></iframe></body></html>

    framedpage.html

    <html><head>	<title>...</title>	<meta http-equiv="Content-type" content="text/html; charset=UTF-8" /></head><body>	This is the framed page page	<br/>	<a href="http://www.google.com" target="_parent">click</a>	<br/>	<a href="http://www.google.com" onclick="parent.location = this.href">standards click</a></body></html>

    Both links on framedpage.html will work but only the second one will validate to strict xhtml because in xhtml the target attribute is depreciated.

    I wonder if the code only can be run in IE?because when i try with firefox, it doesn't run.Thx.
  4. Simply use the <object> tag to initiate the media player. Something like:
    <objectclassid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95"><param name="FileName" value="playlist.m3u" /></object>

    Sorry to interrupt.I'm wondering what is the clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95 means in the code above? thanks :)
  5. If  you want it inserted into your guestbook automatically you'll need to know a server-side scripting language (asp, php, coldfusion...) and a database that contains your guestbook.
    i'm wondering how the code looks like and how it works :) Can Anybody tell me?i'd prefer use php. Thxs :)
×
×
  • Create New...