I\'ve been trying to figure out a way to replace part of a string in an input value, but haven\'t been able to get it working.
The input field looks li
I've just tried this
$('#title').val($('#title').val().replace("54,",""))
and it worked so i assume that it's the way you call the element "$('input[name=ids]')", why don't you try using an id selector?
$('#ids')