Jquery show div id van uit array
Ik zou alleen niet weten hoe dit moet...
Code (php)
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
54
55
56
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
54
55
56
// haalt de id's uit de URL
var url = $.url();
var id = url.attr('query');
var showarray = id.split(' ');
var lengte = showarray.length;
if (lengte > 1){
//console.log(showarray);
// hier wil ik iets hebben dat de boxes (ID) opent
//die van uit de array komen via de functie hier onder.
for(var i=0;i<showarray.length;i++){
//$("#showarray[i]").show(0);
console.log(showarray[i]);
}
}else{
console.log("kleiner dan 1");
}
//boxes (functie dat de boxes showed)
function bindButton() {
var $aantal = $(".focused").length +1;
$(".idboxwrapper").each(function() {
var $self = $(this);
$self.find(".info").click(function() {
var $array = $(".focused:visible").length;
if ($array < 4){
if (!$self.hasClass("focused")) {
$self.addClass("focused");
resizeBoxes();
var currentId = $self.attr('id');
idarray.push(currentId);
}
}
});
$self.find(".sluiten").click(function(e) {
$self.removeClass("focused");
resizeBoxes();
var removeItem = $self.attr('id');
idarray.splice( $.inArray(removeItem, idarray), 1 );
});
});
}
var url = $.url();
var id = url.attr('query');
var showarray = id.split(' ');
var lengte = showarray.length;
if (lengte > 1){
//console.log(showarray);
// hier wil ik iets hebben dat de boxes (ID) opent
//die van uit de array komen via de functie hier onder.
for(var i=0;i<showarray.length;i++){
//$("#showarray[i]").show(0);
console.log(showarray[i]);
}
}else{
console.log("kleiner dan 1");
}
//boxes (functie dat de boxes showed)
function bindButton() {
var $aantal = $(".focused").length +1;
$(".idboxwrapper").each(function() {
var $self = $(this);
$self.find(".info").click(function() {
var $array = $(".focused:visible").length;
if ($array < 4){
if (!$self.hasClass("focused")) {
$self.addClass("focused");
resizeBoxes();
var currentId = $self.attr('id');
idarray.push(currentId);
}
}
});
$self.find(".sluiten").click(function(e) {
$self.removeClass("focused");
resizeBoxes();
var removeItem = $self.attr('id');
idarray.splice( $.inArray(removeItem, idarray), 1 );
});
});
}
Gewijzigd op 28/05/2013 16:32:07 door Marco Hendriks