📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 13:57:27
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
themes
/
berich
/
inc
/
admin
/
assets
/
js
✏️
Editing: widget.js
;(function ($) { /* Start Widget Free Resource */ $(document).on('click', '.pxl-wg-select-image', function (e) { e.preventDefault(); var $this = $(this); var image = wp.media({ title: 'Upload image', multiple: false }).open() .on('select', function (e) { // This will return the selected image from the Media Uploader, the result is an object var uploaded_image = image.state().get('selection').first(); // We convert uploaded_image to a JSON object to make accessing it easier // Output to the console uploaded_image console.log(uploaded_image.toJSON()); var image_url = uploaded_image.toJSON().id; // Let's assign the url value to the input field $this.parent().find('.hide-image-url').val(image_url); $this.parent().find('.pxl-wg-show-image').empty(); $this.parent().find('.pxl-wg-show-image').append('<img src = "' + uploaded_image.toJSON().url + '">'); $this.hide(); $this.parent().find('.pxl-wg-remove-image').show(); $this.parents('form').find('input[name="savewidget"]').removeAttr('disabled'); }); }); $(document).on('click', '.pxl-wg-remove-image', function (e) { e.preventDefault(); var $this = $(this); $this.parent().find('.hide-image-url').val(''); $this.parent().find('.pxl-wg-show-image').empty(); $this.hide(); $this.parent().find('.pxl-wg-select-image').show(); $this.parents('form').find('input[name="savewidget"]').removeAttr('disabled'); }); /* End Widget Free Resource */ })(jQuery);
💾 Save Changes
❌ Cancel