• Categories
    • PHP
    • phpMyAdmin
    • PHPMailer
    • FFMpeg
    • PHPEXcel
    • PHPDoc
    • PHPUnit
    • CakePHP
    • CakePHP 2.0
    • Cake PHP 2.1
    • CakePHP Model
    • Facebook PHP SDK
    • composer-php
    • PHP 7
    • PHP GD
    All Categories
  • About

Open a popup box after receiving result from ajax

javascriptphpjqueryajaxpopup


PHP Snippet 1:

success: function (returndata) {
    if (returndata[4] === 1) {
        $('#bsModal3').modal(); // this
    } else {
        // other code
    }
},

PHP Snippet 2:

$.ajax({
        type: 'post',
        url: 'test2.php',
        dataType: 'json',
        data: {
            txt: txtbox,
            hidden: hiddenTxt
        },
        cache: false,
        success: function (returndata) {
            if (returndata[4] === 1) {
               $('#bsModal3').modal();  // Please right this in your Code
            } else {
                // other code
            }
        },
        error: function () {
            console.error('Failed to process ajax !');
        }
    });

Related Snippets

SlimExceptionHttpNotFoundException

Mobile browsers are adding .html to filename on download

How can i hide dt if dd got empty value

Hide email address with stars (*)

zsh: command not found: php

Symfony process run throws exception - executing on command line works

Form Validation and Submission to database

JQuery content editable div and text box on submit not sending POST

How do I refresh a DIV content?

Laravel 5 controller sending JSON integer as string

Fatal error: Uncaught TypeError: count(): Argument #1 ($var) must be of type Countable|array, null given in

PHP Print to Network Printer

What is the function of the (new Date()).getTime() in PHP?

Yii Ajax Submit button

How to fix " Uncaught TypeError: Argument 1 passed to JpGraphException::defaultHandler() " problem in php 7.1.3 and jpgraph 4.2.6?

About Contact Privacy policy Terms and conditions