Sponsored Content
Full Discussion: buttons links in frame
Top Forums Web Development buttons links in frame Post 302382751 by villain41 on Friday 25th of December 2009 12:33:02 AM
Old 12-25-2009
buttons links in frame

Happy X-Mas to all members...

Hi,
I have one html file page1.html as below
Code:
<HTML>
<HEAD>
<TITLE>Utilities</TITLE>
</HEAD>
         <FRAMESET ROWS="5%,95%">
          <FRAME SRC="frames1.html" NAME=SIDEBAR>
          <FRAME SRC="frames2.html" NAME=SAMPLE>
     </FRAMESET>
</HTML>

the html code for the frames1.html is as below
Code:
<HTML>
<HEAD>
<TITLE>Welcome</TITLE>
</HEAD>
<BODY  bgcolor="#DEB678">
<INPUT TYPE="button" onClick="parent.location='http://gmail.com'" TARGET=SAMPLE>
</body>
</html>

When the button in frame1 is clicked then I want the page to be loaded in the frame2 and not in the same frame.

Plz help me why the above code is not working and correct my code.
Thanks in advance.

Last edited by Scott; 01-01-2010 at 06:44 PM.. Reason: Added code tags
 

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

replace buttons with hyperlinks

I have a script that uploads file push buttons, but i want to replace buttons with hyperlinks. Please send suggessions Thanks (1 Reply)
Discussion started by: handshakeit
1 Replies

2. UNIX for Advanced & Expert Users

Add multiple buttons in frame using TCL/TK.

Hi all, I am trying to add multiple buttons in frame using TCL/TK. If i am adding more buttons then they will not shown in the frame, as all are added in single line. I wanted to put them in the next line once it reaches to end of frame. I wanted to put them like below: ... (0 Replies)
Discussion started by: singh.mmt
0 Replies

3. Solaris

Hard Links and Soft or Sym links

When loooking at files in a directory using ls, how can I tell if I have a hard link or soft link? (11 Replies)
Discussion started by: Harleyrci
11 Replies

4. AIX

List all the soft links and hard links

Hi I'm logged in as root in an aix box Which command will list all the soft links and hard links present in the server ? (2 Replies)
Discussion started by: newtoaixos
2 Replies
Test::HTML::Lint(3pm)					User Contributed Perl Documentation				     Test::HTML::Lint(3pm)

NAME
Test::HTML::Lint - Test::More-style wrapper around HTML::Lint VERSION
Version 2.20 SYNOPSIS
use Test::HTML::Lint tests => 4; my $table = build_display_table(); html_ok( $table, 'Built display table properly' ); DESCRIPTION
This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. If you are not already familiar with Test::More now would be the time to go take a look. EXPORT
"html_ok" html_ok( [$lint, ] $html, $name ) Checks to see that $html contains valid HTML. Checks to see if $html contains valid HTML. $html being blank is OK. $html being undef is not. If you pass an HTML::Lint object, "html_ok()" will use that for its settings. my $lint = new HTML::Lint( only_types => STRUCTURE ); html_ok( $lint, $content, "Web page passes structural tests only" ); Otherwise, it will use the default rules. html_ok( $content, "Web page passes ALL tests" ); Note that if you pass in your own HTML::Lint object, "html_ok()" will clear its errors before using it. BUGS
All bugs and requests are now being handled through GitHub. https://github.com/petdance/html-lint/issues DO NOT send bug reports to http://rt.cpan.org/ or http://code.google.com/ TO DO
There needs to be a "html_table_ok()" to check that the HTML is a self-contained, well-formed table, and then a comparable one for "html_page_ok()". If you think this module should do something that it doesn't do at the moment please let me know. ACKNOWLEDGEMENTS
Thanks to chromatic and Michael G Schwern for the excellent Test::Builder, without which this module wouldn't be possible. Thanks to Adrian Howard for writing Test::Exception, from which most of this module is taken. COPYRIGHT &; LICENSE Copyright 2005-2012 Andy Lester. This program is free software; you can redistribute it and/or modify it under the terms of the Artistic License v2.0. http://www.opensource.org/licenses/Artistic-2.0 Please note that these modules are not products of or supported by the employers of the various contributors to the code. AUTHOR
Andy Lester, "andy@petdance.com" perl v5.14.2 2012-04-06 Test::HTML::Lint(3pm)
All times are GMT -4. The time now is 03:22 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy