Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
https://meet.google.com/pns-vbmz-sys On Wed, Nov 24, 2021 at 12:08 AM DJANGO DEVELOPER wrote: > okay > > > On Wed, Nov 24, 2021 at 12:04 AM Duncan Santiago < > duncansantiag...@gmail.com> wrote: > >> let's try google meet. >> >> On Tue, 23 Nov 2021 at 11:39, DJANGO DEVELOPER >> wrote: >> >>> ca

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
okay On Wed, Nov 24, 2021 at 12:04 AM Duncan Santiago wrote: > let's try google meet. > > On Tue, 23 Nov 2021 at 11:39, DJANGO DEVELOPER > wrote: > >> can I have you on anydesk or any meeting tool? >> >> On Tue, Nov 23, 2021 at 11:31 PM Duncan Santiago < >> duncansantiag...@gmail.com> wrote: >

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread Duncan Santiago
let's try google meet. On Tue, 23 Nov 2021 at 11:39, DJANGO DEVELOPER wrote: > can I have you on anydesk or any meeting tool? > > On Tue, Nov 23, 2021 at 11:31 PM Duncan Santiago < > duncansantiag...@gmail.com> wrote: > >> send me your code then, >> or GitHub repo handle. >> >> On Tue, 23 Nov 20

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
can I have you on anydesk or any meeting tool? On Tue, Nov 23, 2021 at 11:31 PM Duncan Santiago wrote: > send me your code then, > or GitHub repo handle. > > On Tue, 23 Nov 2021 at 11:27, DJANGO DEVELOPER > wrote: > >> sorry if you get offended because I need a solution. a working solution. >>

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread Duncan Santiago
send me your code then, or GitHub repo handle. On Tue, 23 Nov 2021 at 11:27, DJANGO DEVELOPER wrote: > sorry if you get offended because I need a solution. a working solution. I > am not familiar with javascript. so getting a lot of issues > > On Tue, Nov 23, 2021 at 10:38 PM Duncan Santiago < >

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
sorry if you get offended because I need a solution. a working solution. I am not familiar with javascript. so getting a lot of issues On Tue, Nov 23, 2021 at 10:38 PM Duncan Santiago wrote: > your page also reloads and results may not be displayed on your frontend, > just add this lines on your

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread Duncan Santiago
your page also reloads and results may not be displayed on your frontend, just add this lines on your onclick listerner function(e){ //notice the e parameter, it is the event parameter. e.preventDefault() your code here. } or you can just paste this on your script section (function () {

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread Duncan Santiago
do a demo, enter the URL on the text area and click on the post button. Then send me the logs on the terminal running Django and also open the console and send the output, On Tue, 23 Nov 2021 at 10:21, DJANGO DEVELOPER wrote: > okay let me explain. > I have trained models which tells us that whi

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
okay let me explain. I have trained models which tells us that which website is legitimate or which website is not legitimate. I have integrated that model with my django web app using rest api. I tested the API on postman and working. now I want to get the result on front end using HTML CSS and ja

Re: AJAX or Javascript POST request for Django form

2021-11-23 Thread Duncan Santiago
hello, am not sure what the question is. Kindly elaborate. On Tue, 23 Nov 2021 at 09:19, DJANGO DEVELOPER wrote: > I am working on a django based project in which I have integrated ML > trained models to check if a https url is legitimate or not. for this I > need javascript or ajax to call a re

AJAX or Javascript POST request for Django form

2021-11-23 Thread DJANGO DEVELOPER
I am working on a django based project in which I have integrated ML trained models to check if a https url is legitimate or not. for this I need javascript or ajax to call a rest api for my form in which I want to send a post request so that I can check if a https url is legitimate or not. *NOT