[Jquery]Submit niet in IE
Nu doet dit het perfect in FF, maar IE blijft problemen geven, ik overzie het niet meer dus aan jullie de vraag om hier 's naar te kijken:
De js:
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
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
$(document).ready(function(){
$("#reactieClick").click(function(event) {
var bericht = $("#react").val();
var newsID = $("#nieuwsID").val();
$.ajax({
type: "POST",
url: "/includes/reacties.php?page2="+newsID,
data: "bericht="+bericht+"&newsID="+newsID,
success: function(msg){
result = msg;
$("#toonreacties").append(result);
$("#react").val('');
$(".kliko:last").show("fast");
}
});
return false;
});
$('.delreaction')
.livequery('click', function(event) {
$.ajax({
type: "POST",
url: "../includes/reacties.php?page2="+event.target.id,
data: "reactionID="+event.target.name,
cache: false,
success: function(html)
{
$("#reactie"+event.target.name).hide("fast").function()
{
$("#toonreacties").html(html);
};
}
});
return false;
});
});
$("#reactieClick").click(function(event) {
var bericht = $("#react").val();
var newsID = $("#nieuwsID").val();
$.ajax({
type: "POST",
url: "/includes/reacties.php?page2="+newsID,
data: "bericht="+bericht+"&newsID="+newsID,
success: function(msg){
result = msg;
$("#toonreacties").append(result);
$("#react").val('');
$(".kliko:last").show("fast");
}
});
return false;
});
$('.delreaction')
.livequery('click', function(event) {
$.ajax({
type: "POST",
url: "../includes/reacties.php?page2="+event.target.id,
data: "reactionID="+event.target.name,
cache: false,
success: function(html)
{
$("#reactie"+event.target.name).hide("fast").function()
{
$("#toonreacties").html(html);
};
}
});
return false;
});
});
En het formulier:
Code (php)
1
2
3
4
5
2
3
4
5
<form action="" method="post" style="margin:15px;" id="reactieformpje">
<textarea name="bericht" cols="0" rows="0" id="react"></textarea>
<input type="hidden" id="nieuwsID" name="newsID" value="'.$_GET['page2'].'" />
<div style="width:43px;height:22px;background:url(\'../images/submitgo.png\');border:0pt;margin-left:250px; *margin-top:-1px; z-index:1000000;" id="reactieClick" class="loginsub" name="submitreactie"></div>
</form>
<textarea name="bericht" cols="0" rows="0" id="react"></textarea>
<input type="hidden" id="nieuwsID" name="newsID" value="'.$_GET['page2'].'" />
<div style="width:43px;height:22px;background:url(\'../images/submitgo.png\');border:0pt;margin-left:250px; *margin-top:-1px; z-index:1000000;" id="reactieClick" class="loginsub" name="submitreactie"></div>
</form>
Nu staat er een DIV die fungeert als button(werkt in FF, unclickable in IE) maar heb het ook geprobeerd met een input type submit en button.
EDIT: Als ik de deletefunctie weghaal doet ie 't wel in IE...
Gewijzigd op 01/01/1970 01:00:00 door Timen kut
Er zijn nog geen reacties op dit bericht.