Real deal problem for me, because I have no clue to resolve it.
jQuery script I wrote should grab the input value on "paste" action and pass it by ajax to codeigniter controller.
It actually works fine, but only if I paste the value for the second (and further) time. It works fine too when I change on("paste") to on("click") for some div or other DOM element.
Script:
<script type="text/javascript">
$("#link").on("paste", function(){
$("#thumbs").empty().html("<p>loading</p>");
var postData = {
'url' : $("#link").val()
};
$.ajax({
type: "POST",
url: "/thumb/ajax/",
data: postData , //assign the var here
success: function(msg){
$("#thumbs").html( "Data Saved: " + msg );
}
});
});
Any help would be appreciated
EDIT: one more hint.
val() in this particular script actually takes value before the paste action. If i write something to this input, then remove it and paste something else it would actually pass to the controller the value i wrote, not the one I pasted.
EDIT2: OK, I'm pretty sure that's jQuery problem with paste.
<script type="text/javascript">
$("#link").on("paste", function(){
$("#thumbs").empty().html("<p>loading</p>");
var postData = {'url' : $("#link").val() };
$("#thumbs").html($("#link").val());
});
</script>
This script should add value from input to div#thumbs. It doesn't for the first paste action. On second it's actually works.
EDIT3: My friend gave me a hint. on("paste") works right on "paste" action and before the paste is actually done. If anyone give me a hint how to make a timeout to grab the value after the paste I can move on.
it works just fine here
DEMO
update:
you will have to
stringify
the object in order to send it to the server, includejson2.js
your code will look likehere is a DEMO i have included the
json2.js
from the cdnIt worked using setTimeOut, according to the solution found by sznowicki.
My example:
Thank you!
Problem solved.
Like I said before, "on("paste")" action is being done right on the actual paste. So function is being done before the value is pasted to the input. That's because first time paste grabs and pass the default value of the input (null for my example).
Solution is to set the timeout. Right code looks like that and works just fine.
});
Problem solved, thanks @3nigma for support.
I ended up using 'oninput', which works fine unless you need to support IE8 or below.