> ## Documentation Index
> Fetch the complete documentation index at: https://razorpay-60c89f9a-mintlify-audit-missing-sections-1778528421.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Custom Web Integration - Bring a Popup to the Front

> You can bring a pop-up on the screen by calling the `focus` method. This helps as a visual reminder to the customer that the payment is ongoing.

#### Sample Code

```html theme={null}

var rp = new Razorpay(..);
...

// after some time
Processing Payment...
Take me back to payment

  $('button').click(function(){
    rp.focus(); // will bring popup to top
  })

```
