Caute,
mam trochu problem s jQuery.
Mam HTML (napr. index.html):
Kód:
...
<div id="content_1"></div>
...
pomocou JQuery (vid. uplne dole) nacitam toto PHP (napr. content_1.php):
Kód:
...
<input type="radio" value="1" name="h1" id="h1_1" /> <label for="h1_1">Niečo 1</label><br />
<input type="radio" value="2" name="h1" id="h1_2" /> <label for="h1_2">Niečo 2</label><br />
<input type="radio" value="3" name="h1" id="h1_3" /> <label for="h1_3">Niečo 3</label>
...
a predmetne JQuery, ktore :
Kód:
$(document).ready(function(){
$("#content_1").load("content_1.php");
$("input:radio[name=h1]").click(function() {
var hodnota = $(this).val();
$("#content_1").hide();
});
});
nacitanie je v pohode ale po kliknuti na niektory [radio] potrebujem napr. skryt cely #content_1 a podla uvedeneho JS to nefunguje. Sa mi to javi akoby to externe PHP vobec nereagovalo na JS, ktory mam v index.html.
Kde moze byt problem?
DIK.