-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdelete_me.php
More file actions
32 lines (26 loc) · 816 Bytes
/
delete_me.php
File metadata and controls
32 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<html>
<head>
<script type="text/javascript" src="http://jquery.com/src/jquery-latest.js"></script>
</head>
<body>
<form action="" method="GET">
<div id="blacklist">
<input type="button" name="blacklist" id="button_blacklist" value="Blacklist" onClick="blacklist1()" />
</div>
</form>
<script type="text/javascript" >
function blacklist1(){
var phone="55";
alert(phone);
var id="1";
alert(id);
$("#comandni_div").load("HIV-AIDS/getTPLinks?tp_number=1&lang=1,function() {
var reciverParameters = $("#comandni_div").html();
var parser = new Array();
parser = reciverParameters.split(",");
alert(parser);
});
}
</script>
<div id="comandni_div" style="width:1px; height:1px; overflow:hidden;"></div>
</html>