Forum Moderators: open

Message Too Old, No Replies

title and keywords

         

gaucho

8:17 pm on May 21, 2005 (gmt 0)

10+ Year Member



Hi,

How I strip out only the title page and keywords from webpages?

The results must be displayed on textarea.

<textarea id=keywords></textarea>
<textarea id=title></textarea>

Many thanks in advance

G.

orion_rus

8:57 am on May 25, 2005 (gmt 0)

10+ Year Member



Usualy it makes with server side languages.
But you can try to open window or hidden iframe and then make like this:
newwindow=window.open('google.com',params);
newwindow.document.getElementTagName('title');
Good luck to you