Ah I see thanks for info. I was not aware that javaScript cannot access anything beyond the domain of the current page. Make sens actually.
Also thanks for the heads up about attracting a swarm of expensive lawyers, you will need explicit permission to abstract data from eBay's auctions.
I saw similar site extracting data from auctions and displaying them on theire site.
So I assumed I could not get into any trouble trying to list only the data.
I definitely need to read more when it comes to javascript and things allowed on websites.
Also I know this was not meant for this thread but recently I came across a javascript code.
Basically a javascript function.
Now the way I normally write a function is like this:
Code:
function Call()
{
// run code
}
But the author wrote:
Code:
Call = function()
{
// run code
}
Is there a purpose behind that ore is it just the way you like to code?
I mean, if lets say; the second solution would load faster I'll definitely start writing my codes that way. Thanks for taking the time to reply.