Ebs modified their ebs data. now ebs page is responsive. New Action URL : https://secure.ebs.in/pg/ma/payment/request DEMO IS HERE:: Transaction Details * Channel Standard * Account …
Read MoreWhat is the test card credentials for verifying the ebs payment option in TEST mode?
What is the test card credentials for verifying the ebs payment option in TEST mode? Card No: 4111 -1111 – 1111 – 1111 Exp Date: …
Read Morehow to integrate EBS payment in php
here the demo files are attached. below link contains the full demo file for ebs payment gatway integration in php Click here to download Demo …
Read MoreHow to redirect with www. in php
#redirects with www.website name from website.com Add this code in your .htaccess file in public html folder. RewriteCond %{HTTP_HOST} ^website.com RewriteRule (.*) http://www.website.com/$1 [R=301,L]
Read MoreHow to remove index.php from url
#Used To Remove index.php Add the below codes in .htaccess file RewriteEngine on RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteCond %{REQUEST_FILENAME} !-l RewriteRule ^(.*)$ index.php/$1 …
Read MoreHow to remove arrow symbol from input type=number using css
Add this code to your css Input Button look like Enter Pincode <input type=”number” name=”pincode” value=”” /> Enter Pincode <style> input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; …
Read Morehow to get direct child of an element in jquery
Get the direct children of an element UL. $(document).ready(function() { $(“ul”).children().css({“color”: “red”, “border”: “2px solid blue”}); });
Read MoreFind an element using jquery
finds tag/class/id the table/page Using Jquery <script> $(document).ready(function() { $(“.table”).find(“span”).css({“color”:”blue”}); }); </script>
Read MoreHow to find an element or tag using Jquery
The HTML is here: <table class=”table”> <caption>My testing Table</caption> <tr> <td class=””><span>data-1</span></td> <td>data-2</td> </tr> <tr> <td>data-3</td> <td><span>data-4</span></td> </tr> </table> The Script is: // ONLINE JQUERY …
Read Moreon check select all checkboxs in jquery
HTML Code is <div> Select All <input type=”checkbox” name=”select_all” id=”select_all”> </div> <div> <table id=”Optiontable”> <tr> <td> <input type=”checkbox” name=”checkRow” id=”checkRow” value””> Select-1 </td> </tr> <tr> …
Read More