
Featured
-
How Regression Testing Detects Integral Errors In Business Processes
Humans are forever changing and evolving and so to
by kristina.rigina -
Get Display Banner Advertising Opportunity on FindNerd Platform
“Do you have a product or service that nee
by manoj.rawat -
Android O Released with Top 7 New Features for App Developers
Android was founded by Andy Rubin, Rich Miner, Nic
by sudhanshu.tripathi -
Top 5 Features That Make Laravel the Best PHP Framework for Development
Laravel is a free open source Web Framework of PHP
by abhishek.tiwari.458 -
Objective C or Swift - Which Technology to Learn for iOS Development?
Swift programming language is completely based on
by siddharth.sindhi
Tags
How to implement load more dynamic results functionality using jQuery, Ajax Php and Database?
To display or load more results, whether it is commenting on a blog website, like or images on social media or products on eCommerce website the best UX pattern for this is either pagination, a Load more button or infinite scrolling. In this tuto...
How to load heavy images via ajax in webpage
Hello Reader's if you find your website is too heavy to load the contents, then you can use the ajax to load images.
By using Ajax data be loaded and browser will load the heavy images with fade in effect.
So lets get started...
How to display the server time with the use of ajax
In this tutorial , you will learn that how to get the server time automatically with the use of jQuery-ajax code. We can make the simple input form in html for time.When the name is input by the user , the time input feild will automatically call...
How to show show the text data from a file into website using ajax
Hello Reader's if you are making the website in which you have to fetch and show the content data from an external file then in this blog you can see how to do it. In web technologies different technologies offers you many ways to do this but...
How to make AJAX call in jQuery?
Sometimes we need to make AJAX call in our Web page. The purpose of AJAX call is that you want to get/submit data without refreshing your page or you want to submit your form by calling an API. We can do this very easily by using ajax() method of...
How to run php code when click action occur on link
Hello Reader's, If you want to run PHP code when user click any selected anchor tag then you can use the Jquery for this. Lets see how you can run this code.
First you have to write the onlclick action on the anchor tag like this:-
<a hr...
How to pass an arrray in PHP via Ajax
Hello Readers if you want to send the array into another PHP page then you can use the code below:-
I have array made by function .push. In array is very large data. How is the best way send this to PHP script?
dataString = array(a->b);...
How to make Ajax loading icon using CSS
Hello Reader's if your website is taking too much time to load the data then you can show the ajax loading icon for the time.
Lets see how to put the loading icon in the website.
<!DOCTYPE html>
<html>
<meta name="viewport"...
Using AJAX in ASP.NET
Ajax Calls in ASP.NET
For removing postback in web page you use
1 Update Panels
Update Panels are used when there is partial postback of page can happen.
2 Ajax Calls
If you want to minimize postbacks to the extent Ajax c...
How to send email using AJAX request?
Hello Reader's If you need to make ajax request that send the email in backgournd page then you can use the code below:-
$('#submit').click(function() //specify your selector of form
{
$.ajax({
url: sendemail.php, // your action...
Best AJAX path for Wordpress
Hello Reader's if you want to write a custom code for making AJAX hit then you should choose for the best path for that, Open the file admin-ajax.php All ajax request should be made there.
On in first step open the template file and write the ...
Submit form data in Ajax
We will learn here, how we can submit form data with the help of Ajax.
First step:-
Create index.html file and create a form with the three labels/fields:- Name,Email and Superhero Alias. Inside head tag we have included one css file and ...
Ajax Call in ASP.NET
Ajax Call (Asynchronous JavaScript and XML Call) In Asp.Net
Ajax Call is used to refresh portion of a webpage without reloading whole page.
Ajax Calls are used to create fast web pages as they refreshes only a portion of web page instead of...
Creating custom alert and waiting popup using jquery
Creating custom alert and waiting popup using jquery
function displayWaitingPopup(){
var dynHtmlPart1 = '';
//insert lightbox HTML into page
$('body').append(dynHtmlPart1);
$("#shade").css('height', $(document).heig...