Jump to content

Who here knows java/web programming?


Just Jack

Recommended Posts

I'm trying to find the url's to get a direct link to videos on the web. For example, if you go to the CBS video webpage, they have a list of all their shows on the left side of the page...

 

http://www.cbs.com/video/

 

Now most sites, I could right click on "The Amazing Race", select Properties, and get the URL to just that shows videos. But all I see is

 

Address : javascript:void(0);

 

So I looked at the code, but not knowing java, I'm not sure what I should be looking for. All I could find was...

 

<a href="/primetime/amazing_race/" class="shows" target="_parent">The Amazing Race</a><br>

 

I'm looking for something that I think would be like...

 

"http://www.cbs.com/video/amazingrace/videos"

 

Any help? I've been doing some reading on the web, but it's more "how to put urls in java", not find them like I want.

Edited by Just Jack
Link to comment
Share on other sites

Dude, not what I'm looking for. I want the screen I see that shows all available videos for the show. And not the one you get going through the shows webpage, since that starts the latest episode.

 

Stop trying to steal video.

I'm not stealing, I'm working on a project with specific requirements.

Link to comment
Share on other sites

Dude, not what I'm looking for. I want the screen I see that shows all available videos for the show. And not the one you get going through the shows webpage, since that starts the latest episode.

 

 

Well, I'm no expert, but I'll take a shot here. I think this is a dynamic page, and doesn't have a static url that you can link to. The Amazing Race page is created dynamically from the static url http://www.cbs.com/video/.

 

From what I understand (which is very little, BTW) it is possible to have direct links to dynamic pages. But I think the web designer has to supply special code for that to happen. From what I can see, there is no way to direct link to the page the way it is currently created.

 

Now watch someone with actual web skills completely destroy that explanation and give you the link. :lol:

Link to comment
Share on other sites

×
×
  • Create New...