• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

a href with frames

 
Ranch Hand
Posts: 361
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi can I use a href across frames.

consider one.jsp



two.jsp




I am trying to define a href in two.jsp and the corresponding link in one.jsp.

Can i access two.jsp a href in one.jsp, with out re-loading the two.jsp in the frame two.
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by N Chaurasia:
Can i access two.jsp a href in one.jsp, with out re-loading the two.jsp in the frame two.


I really don't know what you are asking. You might try re-wording your question.

Or, it's likely that the answer to the question might be the use of the target attribute on the <a> tag. Just a stab.
 
Naresh Chaurasia
Ranch Hand
Posts: 361
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I tried to use target attribute



But it opens a new window for me when i clikc link Go, What i am trying to achieve is that when i click on the link Go, I should be able to access the
defined in two.jsp.

i.e. When i click link Go, the two.jsp defined in frame two should be at the top(trying to replicating the functionality of defined in same file.
 
author
Posts: 15385
6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
the target should just be the framename, it should not include the parent reference.

Eric
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic