blob: 3ede41a27d9363802f2f93c87355fed0260c4e1d (
plain)
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
|
<!DOCTYPE html>
<html class="reftest-wait">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
#searchPaginationFooter {
direction: rtl;
}
.backLink {
display: inline;
}
.nextLink {
display: inline;
}
.pagination,
.pagination li {
display: inline;
}
</style>
</head>
<body>
<div>
<div id="searchPaginationFooter">
<p class="backLink"> < <span class="gray">السابق</span></p>
<ul class="pagination">
<li><span class="select">1</span></li>
<li><a href="#page=2">2</a></li>
<li><a href="#page=3">3</a></li>
<li><a href="#page=4">4</a></li>
<li><a href="#page=5">5</a></li>
<li><a href="#page=6">6</a></li>
<li><a href="#page=7">7</a></li>
<li><a href="#page=8">8</a></li>
<li id="here"><a href="#page=9">9</a></li>
<li>...</li>
<li><a href="#page=325">325</a></li>
</ul>
<p class="nextLink"><a href="#page=2">التالي</a> > </p>
</div>
</div>
<script type="text/javascript">
function removePage() {
var here = document.getElementById("here");
here.remove();
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", removePage);
</script>
</body>
</html>
|