Showing posts with label Jquery. Show all posts
Showing posts with label Jquery. Show all posts

Thursday, June 6, 2013

Free Codecanyon - Jquery Smart Alert Popup

Smart Alert aims to replace standard dumb alert with fully configurable alternative, while maintaining its ease of use.Jquery and css base stylish fancy popup or fancy alert box.



Smart Alert Functionality :
- Easy to user
- Three Creative Styles
- Crossbrowser
- Fully themeable
- Fully configurable
- Localization Support
- Retina Ready
- Compatible with every Layout

For download Source code : Click Here


 

Tuesday, March 5, 2013

Ajax Inline Text Editor Script

AjaxEditor Is inline or place edit content.Ajaxeditor is Easy to customized,Easy to Implemented,No Loading (Ajax).Its completally jquery-ajax based codecanyon script.

Codecanyon : Ajax-text-editor Script

 

Codecanyon Editme For Inline Edit

EditMe Is a Codecanyon Powerfull Jquery Plugins.editme hides the input field, shows a nice labeled of the data in the input field and adds an edit button.


Codecanyon-EditMe

Edit Me Contain Below Services :
  • edittext : The text in the edit link. Default is "edit"
  • removetext : The text in the remove link. Default is "remove"
  • removeable : Show the remove link? Default is "false" (use booleans)
  • savetext : The text in the save button. Default is "save"
  • canceltext : The text in the cancel link. Default is "cancel"
  • autosave : Pass the function you want to use, if you want to save the data using ajax. The function should accept ONE parameter (the data to save).

Tuesday, February 19, 2013

Ajax Callback Function Using Javascript

Hey Friends,
AJAX Means Asynchronous JavaScript and XML.
AJAX is the art of exchanging data with a server, and updating parts of a web page - without reloading the whole page.
Today we Learn About Ajax call Back Function.Its very Nice and Simple script.Its call by JavaScript.Use this Function and See the magic of it.First you have download jquery library.

Jquery Library : Click Here

Example Code(Just run this code and see the magic):
1) test.php

//Add jquery library
<script language="javascript" src="jquery.min.js"></script>
//create one javascript function
<script language="javascript">
function addNumbers() {
     var number1 = $('#number1').attr('value');
     var number2 = $('#number2').attr('value');
     $.get("data.php", { number1: number1, number2: number2 },
         function(data){
             document.getElementById('data').value=data;
            //alert("Data Loaded: " + data);
     });
}
</script>


<form method="post">
<input type="text" id="number1" value="0" /> + 
<input type="text" id="number2" value="0" />
<input type="button" onclick="addNumbers();" value="=" />
<input type="text" id="data" />
</form>


2) data.php
<?php
echo $_REQUEST['number1'] + $_REQUEST['number2'];
?>