Skip to content

Commit

Permalink
Create clearAllAuctions.md (#5473)
Browse files Browse the repository at this point in the history
* Create clearAllAuctions.md

prebid/Prebid.js#11912

* Update clearAllAuctions.md
  • Loading branch information
patmmccann authored Jul 26, 2024
1 parent b59f7b9 commit fce5feb
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions dev-docs/publisher-api-reference/clearAllAuctions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: api_prebidjs
title: pbjs.clearAllAuctions
description:
sidebarType: 1
---


Utility to clear all ad units of bids. This is useful for testing or to clear caches in a single page application.

```javascript
// Function to call when the URL changes
function onUrlChange() {
pbjs.clearAllAuctions();
}

// Function to initialize the URL change listener
function initUrlChangeListener() {
// Listen for changes to the history state
window.addEventListener('popstate', onUrlChange);

// Optionally, you might want to handle the initial load as well
onUrlChange();
}

// Call the function to set up the listener
initUrlChangeListener();

```

<hr class="full-rule" />

0 comments on commit fce5feb

Please sign in to comment.