Showing posts with label web development. Show all posts
Showing posts with label web development. Show all posts

Thursday, 4 May 2017

jQuery Effects - Hide and Show

jQuery Effects - Hide and Show Easy and simple methode

with code

Hide, Show, Toggle, Slide, Fade, and Animate

jQuery hide() and show()

With jQuery, you can hide and show HTML elements with the hide() and show() methods:



 $("#hide").click(function(){
    $("p").hide();
});

$("#show").click(function(){
    $("p").show();
});


Example code for  Hide JQuery script

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("#hide").click(function(){       // this Jquery code will hide the Text as user click on it
        $("p").hide();
});
    $("#show").click(function(){
        $("p").show();                       
// this Jquery code will hide the Text as user click on it    
 });
});
</script>
</head>
<body>

<p>If you click on the "Hide" button, I will disappear.</p>

<button id="hide">Hide</button>
<button id="show">Show</button></body>
</html>



you can add speed like feature in time J query function
synatax 

$(selector).hide(speed,callback);

$(selector).show(speed,callback); 



Example 

$("button").click(function(){
    $("p").hide(1000);       //  speed is in milliseconds
});



Toggle 

With jQuery, you can toggle between the hide() and show() methods with the toggle() method.

Syntax
$(selector).toggle(speed,callback); 

exmple 
$("button").click(function(){
    $("p").toggle();
});
 



thanks and njoy  the code 

DNS SPY :Monitor, validate and verify your DNS configurations

DNS Spy

IF Paranoid about your DNS

Validate and verify your DNS configurations

 


What DNS Spy offers

  • Monitor your domains for DNS changes
  • Alert you when a record has changed
  • Keep a detailed history of each DNS record change
  • Notify you of invalid or RFC-violating DNS configs
  • Rate your DNS configurations
  • Free for 1 monitored domain
  • Back-up all your DNS records
  • Verify all your nameservers are in sync
  • Support DNS zone transfer (AXFR)
  • 2 Factor Authentication

Free for Open Source projects

DNS Spy is built on Open Source and the founders have a long history with Linux and Open Source in general.
If you run an Open Source project, you can apply for a free, lifetime, premium subscription to DNS Spy as a token of our appreciation for all your hard work!
A popular Open Source project has the potential to impact millions of users if its DNS gets hijacked, protect your own projects with DNS Spy.

 This is one of the kind DNS over watch tool for the its user.

Enjoy the Rest

 

Sunday, 30 April 2017

Zend Engin Php

 

Zend Engine

 is used internally by PHP as a compiler and runtime engine. PHP Scripts are loaded into memory and compiled into Zend opcodes. These opcodes are executed and the HTML generated is sent to the client.
To implement a Web script interpreter, you need three parts:
  • The interpreter part analyzes the input code, translates it, and executes it.
  • The functionality part implements the functionality of the language (its functions, etc.).
  • The interface part talks to the Web server, etc.
Zend takes part 1 completely and a bit of part 2; PHP takes parts 2 and 3.
Zend itself really forms only the language core, implementing PHP at its very basics with some predefined functions.


The Zend Engine is the centerpiece of PHP, and is the component that parses (in other words, 'understands') and executes all of your PHP files.
Work on the Zend Engine began on 1997, when Andi Gutmans and Zeev Suraski designed the first implementation of the PHP language, with syntax loosely based on PHP/FI. Their work on PHP 3 revolutionized the PHP world, and created PHP as we all know it today.
The term 'Zend Engine' was first used in 1999, and was given to the scripting engine of PHP 4. For the first time, the scripting engine was a separable, reusable component, that was not tied to the Web-specific interfaces of PHP in any way, and could be used elsewhere. The performance, reliability and extensibility of PHP 4's engine brought a 2nd revolution to the world of PHP, and helped making it the most popular Web platform in the world today.
The Zend Engine is responsible for the following tasks in PHP:
  • High performance parsing (including syntax checking), in-memory compilation and execution of PHP scripts
  • Implementation of all of the standard data structures of PHP
  • Interfacing with extension modules for connectivity to external resources and protocols, such as SQL, HTTP and FTP
  • Overloading the Object Oriented syntax, for integration with Java and .NET
  • Providing all of the standard services, including memory management, resource management and more for the whole of PHP
The Zend Engine was designed to be extensible, and allows extension modules such as debuggers, performance boosters and custom loaders to be dynamically integrated to it. Whenever you're using such a plug-in module, you're doing so thanks to the extensibility options of the Zend Engine!

 All thinks for the creator of Zend Engine for the Supporting PHP.

For more details :- Zend.comPhp/document

Wait for the next blog
Stay Touched With Developer skool /The Spi-Tech Consolidate