Posts by Pedro Ferreira • 1 point
3 posts
-
0
votes1
answer46
viewsQ: i want to get the keyup done in a div contenteditable
$('#mesg').on('keyup', function(e){ if ( e.keyCode || e.charCode == 13) { var texto = $(this).innerHTML(); var id = '$id:5'; …
jqueryasked Pedro Ferreira 1 -
0
votes1
answer24
viewsQ: my jqery always shows the error "an error occurred while receiving the message"
jQuery('body').on('keyup', '.mesg', function(e){ if (e.which == 13) { var texto = $(this).innerHTML(); var id = '$id:5'; …
jqueryasked Pedro Ferreira 1 -
0
votes0
answers34
viewsQ: i want to submit input with id='o' with jquery so when I click the Submit button nothing happens
<form id="postnoticastoinvetors" name="postnoticastoinvetors" method="post" action=""> <div id="textopostagora" contentEditable="true" data-text="Publish Your news" spellcheck="true"…