Spion90009se
Grünschnabel
Hallo,
Ich schreibe greade an einem kleinen Anonymizer und hab diesen mit JQuery und PHP umgesetzt.
Nun das Problem wie setze ich values überhaupt mit Jquery im besonderen bei Textfeldern?
Mein Anfang:
Das einzigste was nicht geht ist das setzen der values.
Ich schreibe greade an einem kleinen Anonymizer und hab diesen mit JQuery und PHP umgesetzt.
Nun das Problem wie setze ich values überhaupt mit Jquery im besonderen bei Textfeldern?
Mein Anfang:
HTML:
<script type="text/javascript">
$(document).ready(function(){
$("#more").hide();
$("#oneAnonym .thelink1").hide();
$("#oneAnonym .thelink2").hide();
$("#oneAnonym .thelink3").hide();
$("#oneAnonym .thelink4").hide();
$("#generate").click(function(){
$(this).hide();
$("#more").show();
x = $("#oneAnonym .url");
$("#oneAnonym .thelink1").value = 'http://89.46.38.232/to/?' + x;
$("#oneAnonym .thelink2").value = '<a href=\"http://89.46.38.232/to/?' + x + '\">Anonym zu ' + x + '</a>';
$("#oneAnonym .thelink3").value = '[ url=http://89.46.38.232/to/?' + x + ']Anonym zu ' + x + '[ /url]';
$("#oneAnonym .thelink4").value = 'http://89.46.38.232/to/?'+x+'';
$("#oneAnonym .thelink1").show();
$("#oneAnonym .thelink2").show();
$("#oneAnonym .thelink3").show();
$("#oneAnonym .thelink4").show();
return false;
});
$("#more").click(function(){
$("#generate").show();
$(this).hide();
return false;
});
});
</script>
Zuletzt bearbeitet: