Skip to main content

All Questions

1 vote
1 answer
1k views

Get variable values from the DOM and use them as parameters in a webhook

I'm very new to JS and trying to work around a limitation in Webflow. I want to get some values from the webpage, and use those as parameters in a webhook. The page structure could look something like ...
Hemi's user avatar
  • 113
0 votes
0 answers
1k views

How to update content in a page using webhook?

I'm trying to update content in an active loaded page using webhook response. Earlier, I used to trigger the function using setTimeout for every 5 secs but noticed its kind of increasing server load. ...
Ambiguous Turtle's user avatar
0 votes
0 answers
369 views

Send webhook underwater (JQuery/Ajax or without opening the link in browser)

I have to open a link from http://www.example.com so it saves something on http://www.otherexample.com with a webhook-link like in the example: (http://www.otherdomain.com/test.php?id=12345&...
Sonny S.'s user avatar
2 votes
1 answer
10k views

How to Trigger Webhook With Javascript Snippet?

Hope you’re doing well! If you could, I’d like help with this: I’m very new to javascript, and have a question. How do I trigger a webhook URL by javascript (without loading the page)? In this case, ...
VinceJ's user avatar
  • 81
1 vote
0 answers
2k views

How to receive a Webhook with JS / JQUERY?

I want to receive a Webhook Post in JS/JQUERY (JSON format) from Shopify when a customer succesfully purchases a product. How do I setup a "listener"? A specific URL which is able to handle the ...
rub3eeen's user avatar
0 votes
2 answers
468 views

How to remove jQuery from this code?

Due to some reason, I don't want to use jQuery in this JavaScript code: $(function() { var url = ; //webhook URL here var content = "Hiii"; var username = "Hi"; $.post(url, {"content": content,...
Adit Luhadia's user avatar
0 votes
0 answers
2k views

Submit HTML form data to IFTTT webhook with Javascript

I have a HTML form. When submitting the form I would like to send the data to an IFTTT webhook. I tried two options, but it seems like they are not working. HTML submit button: <li class="buttons"...
George's user avatar
  • 73
1 vote
1 answer
787 views

Redirect to a different URL after submitting the form with jQuery Validate submitHandler (Without Ajax)

I have a problem with making a form on Wordpress website work with two tools: Zapier and AutopilotHQ. I want my form to be submitted to myWebHookURL but the page to be redirected to a different url, ...
Filip Rastovic's user avatar
0 votes
1 answer
67 views

How to after json file already load and then load googlemap?

I use googlemap by javascript callback function <script> jsonmap={}; jqxhr=$.getJSON("postheat.json",function(data){ return data}).done(function(data){ jsonmap=data; return data; }); ...
user504909's user avatar
  • 9,559