Can someone help me how i can manage to support this to work with translation text option. so i want to replace text Are you sure with text translation like : {{ trans(‘plugins/real-estate::dashboard.no_review’) }} To read my information from my file. Any ideas how to do it? Cause if i input it like that it just skip the pop up
Tag: javascript
update only single element while sharing same class
I have below jquery which shows an image preview from file input. The above code is working well, but the problem is it updates all img elements using the same class screenshot blade ANy suggestion to update only specific img element while using same class ? Answer Just update your readURL function like this: I solved it for you on
how to submit two actions(forms) by the same submit btn ? (php)
I am using code given below. I want to submit two forms values and get both values on another page listeView(ajouterAideMat.php) . By this code only values of 2nd form fetched on another page and values of first form become null. So please tell me the correct way to get the value of both forms on another page. ps: the
Modal within a php while loop EDIT: how to close modal
Okay so basically I have a modal that is within a while loop that is pulling in post data for a video link. The issue is that it only works for the first video and I understand that it’s because that is what loads first. I want to know how I can get it to work for all videos in
Problems with php validations not working
I was tasked on making simple i-Prepaid Reload programming.So far, I have problem with validations not working on reload.php page. As if there were no validations set at all and it went to result.php after pressing Buy button. I couldn’t figure it out what’s the cause of this error. There should be some errors appear is I put alphabets or
Stripe PaymentIntents PHP, setting price
Basically, the problem im having is between php and javascript, where my php function is createPayment() I can’t put javascript variable so I can’t enter the amount ($) of the order I’m really stuck on what to do. Maybe a post event to the server to create payment via javascript but I don’t know how to do that Javascript: Server
Change options when I select a category using Javascript (Country/State)
Im trying to hide some options when I select a different country. These options are the states of this country. But, when I select the country, it doesnt showing nothing in the subcategory. So, I try make differents values using numbers, coz I cant use the same values in my application. Someone can help me? Answer There are a few
I am trying to use AJAX to change the orderby and order arguments in a WP_Query, but I can’t determine why my code won’t work [closed]
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers. Closed 5 months ago. Improve this question
How to upload file using laravel vue api?
i’m trying to make a form with the ability to upload files using form i’m able to store string, int data but i’m a bit lost with the way that i need to provide for the controller and the view this is the add template: this is the database table: controller: model: app: i can provide more code if necessary
How to remove static array after uncheck checkbox in jquery
I have two checkboxes, and I want whenever I click on any checkbox then their values (static array) should be inserted into “final” array (empty array). If I uncheck that checkbox then its value (static array) should be remove from “final array”. Right now I am inserting/pushing “static” array into blank array (final array), but I want to know that