28/6/2010, 23:22
- Code:
01.var link = document.getElementById('FlashNCTplayer').src;
02.var host = String(window.location.hostname);
03.var current = String(document.location);
04.if (host != '[You must be registered and logged in to see this link.] {
05.createBox('<li>Đã tích hợp thành công vào nhaccuatui.com</li><li>Bạn hãy bấm vào <a href="javascript:cmon();">đây</a> để reload trang web này.</li>', '<li>Sau khi trang web đã reload xong, bạn hãy kích hoạt jgrabber một lần nữa để lấy link.</li><li><b>Chú ý: </b>Đây là một hạn chế của javascript, không phải là lỗi của jgrabber.</li>');
06.}
07.
08.if (window.XMLHttpRequest) {
09.XHR = new XMLHttpRequest();
10.} else if (window.ActiveXObject) {
11.XHR = new ActiveXObject("Msxml2.XMLHTTP");
12.}
13.
14.XHR.open('GET', link);
15.XHR.onreadystatechange = function() {
16.if (XHR.readyState == 4) {
17.link = XHR.getResponseHeader("Content-Location").match(/file=(.*)/)[01];
18.if (window.XMLHttpRequest) {
19.XHR2 = new XMLHttpRequest();
20.} else if (window.ActiveXObject) {
21.XHR2 = new ActiveXObject("Msxml2.XMLHTTP");
22.}
23.XHR2.open('GET', link);
24.XHR2.onreadystatechange = function() {
25.if (XHR2.readyState == 4 && XHR2.status == 200) {
26.link = XHR2.responseText.match(/</creator><location>(.*?)</location>/)[01];
27.alert(link); // Link đây nè
28.}
29.}
30.XHR2.send(null);
31.}
32.}
33.XHR.send(null);
34.
35.function cmon() {
36.document.location.replace(current.replace('nhaccuatui.com', '[You must be registered and logged in to see this link.]
37.}