OK, I've been at this for a while now and I've been Googling so much that I've seen the first four or five pages of search results for a number of different search terms. My eyes are now turning square and frankly it's time for me to ask for help please!
What I want to do is to write a plain text file containing a websites URL. Then I want to be able to load the site mentioned in the text file in a new tab using my non default browser (Firefox). The problem is that I am using FRAMES and I'm punching above my weight.
Here's my current script:
Code:
<frameset rows="98,*" frameborder="no" border="0" framespacing="0">
<frame src="PageA.html" scrolling="No" noresize="noresize" id="topFrame" />
<frame src="url.txt" id="mainFrame" />
</frameset>
Obviously once loaded the top frame is fine and the main frame only contains the contents of the URL.txt file
So how do I change/rewrite my script to do what I want please?
Please help me, thank-you in advance.