I\'m trying to change src dynamically through jquery in a Phonegap Build application, like this
$(\'#photo_profile\').attr(\'src\', fullPath).one(\"load\", func
Sounds like caching issue. Try to prevent it with some random parameter:
$('#photo_profile').prop('src', fullPath + '?' + Math.random())
Also src is a property, so it makes sense to use prop instead of attr.
src
prop
attr