You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi
This is my code for show url in input typr on button click
$(document).ready(function(){
$('#myframe').on('load', function () {
$(this).contents().on('click','.select',function () {
var path = $(this).attr('data-path')
$('#path').val(path);
$('#image').attr('src', path)
$('#myModal').modal('hide')
});
});
});
But unable to set selected image url in input type.
Also $(this).contents().on('click','.select',function ()//
in this line of code unable to find .select class in modal view.
Thanks
The text was updated successfully, but these errors were encountered:
Hi
This is my code for show url in input typr on button click
$(document).ready(function(){
But unable to set selected image url in input type.
Also
$(this).contents().on('click','.select',function ()//
in this line of code unable to find .select class in modal view.
Thanks
The text was updated successfully, but these errors were encountered: