The script as downloaded today did not work for me. Changing the following the following way did help: // searchNetflixBtn.href = 'http://www.netflix.com/Search?v1=' + encodeURIComponent(movieTitle); searchNetflixBtn.href = 'http://www.netflix.com/search/' + encodeURIComponent(movieTitle);
New Search URL needed
The script as downloaded today did not work for me.
Changing the following the following way did help:
// searchNetflixBtn.href = 'http://www.netflix.com/Search?v1=' + encodeURIComponent(movieTitle);
searchNetflixBtn.href = 'http://www.netflix.com/search/' + encodeURIComponent(movieTitle);
Cheers - X