Wednesday 14 August 2019

Mahesh Babu Sarileru Neekevvaru (2019) Telugu Movie Full Songs Audio CD Rips Free Download ACD RIPS

Sarileru Neekevvaru (2019) Movie Audio CD Rips Free Download

Cast & Crew :: Mahesh Babu, Rashmika Mandanna
Music :: Devi Sri Prasad
Lyrics :: Devi Sri Prasad
Director :: Anil Ravipudi
Producer :: Ramabrahmam Sunkara
Cassettes & CD’s On :: Lahari Music
01 – Sarileru Neekevvaru – Depak Blue
320KBPS : [DirectLink] OR [Zippy]
128KBPS : [DirectLink] OR [Zippy]

Monday 4 December 2017

HTML5 Get Geolocaton Latitude and Longitude value Stored in Mysql display in html Page

<!DOCTYPE html>
<html>
<body>

<p>Click the button to get your coordinates.</p>

<button onclick="getLocation()">Try It</button>

Latitude<p id="demo"></p><br>
Longtitude<p id="demo1"></p><br>
 
     

<script>
var x = document.getElementById("demo");
var y=document.getElementById("demo1");
function getLocation() {
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition, showError);
    } else {
        x.innerHTML = "Geolocation is not supported by this browser.";
        y.innerHTML = "Geolocation is not supported by this browser.";
    }
}

function showPosition(position) {
    x.innerHTML =+ position.coords.latitude ;
 
    y.innerHTML =  + position.coords.longitude;
    console.log(x.innerHTML);


//Test for browser compatibility
if (window.openDatabase) {
    //Create the database the parameters are 1. the database name 2.version number 3. a description 4. the size of the database (in bytes) 1024 x 1024 = 1MB
    var mydb = openDatabase("map_db", "0.1", "A Database of Contact I Like", 1024 * 1024);

    //create the cars table using SQL for the database using a transaction
    mydb.transaction(function (t) {
        t.executeSql("CREATE TABLE IF NOT EXISTS map (id INTEGER PRIMARY KEY ASC, lati TEXT, long TEXT)");
    });



}
else {
  alert("WebSQL is not supported by your browser!");
  }
 
 
    //check to ensure the mydb object has been created
    if (mydb) {
        //get the values of the make and model text inputs
     

        var lati = document.getElementById("demo").innerHTML;
        var long= document.getElementById("demo1").innerHTML;
  alert(lati);
    alert(long);
 

        //Test to ensure that the user has entered both a make and model
        if (lati !== "" && long !== "" ) {
            //Insert the user entered details into the cars table, note the use of the ? placeholder, these will replaced by the data passed in as an array as the second parameter
            mydb.transaction(function (t) {
                t.executeSql("INSERT INTO map (lati,long) VALUES (?,?)", [lati,long]);
                outputContacts();
            });
        } else {
            alert("You must enter a make and model!");
        }
    } else {
        alert("db not found, your browser does not support web sql!");
    }
 
 
 
 

    function outputContacts() {
    //check to ensure the mydb object has been created
    if (mydb) {
        //Get all the cars from the database with a select statement, set outputCarList as the callback function for the executeSql command
        mydb.transaction(function (t) {
            t.executeSql("SELECT * FROM map", []);
        });
    } else {
        alert("db not found, your browser does not support web sql!");
    }
}
 
 
}

function showError(error) {
    switch(error.code) {
        case error.PERMISSION_DENIED:
            x.innerHTML = "User denied the request for Geolocation."
            break;
        case error.POSITION_UNAVAILABLE:
            x.innerHTML = "Location information is unavailable."
            break;
        case error.TIMEOUT:
            x.innerHTML = "The request to get user location timed out."
            break;
        case error.UNKNOWN_ERROR:
            x.innerHTML = "An unknown error occurred."
            break;
    }
}
 
                                             
 
 

</script>

</body>
</html>
<!DOCTYPE html>
<html>
<body>

<p>Click the button to get your coordinates.</p>

<button onclick="getLocation()">Try It</button>

Latitude<p id="demo"></p><br>
Longtitude<p id="demo1"></p><br>
   
   
<div id="carlistholder">
     <h3>Your Cars</h3>

    <ul id="carlist"></ul>
</div>
<script>
var x = document.getElementById("demo");
var y=document.getElementById("demo1");
function getLocation() {
    if (navigator.geolocation) {
        navigator.geolocation.getCurrentPosition(showPosition, showError);
    } else {
        x.innerHTML = "Geolocation is not supported by this browser.";
        y.innerHTML = "Geolocation is not supported by this browser.";
    }
}

function showPosition(position) {
    x.innerHTML =+ position.coords.latitude ;
   
    y.innerHTML =  + position.coords.longitude;
    console.log(x.value);
   
    //check to ensure the mydb object has been created
    if (mydb) {
        //get the values of the make and model text inputs
       

        var lati = document.getElementById("demo").value;
        var long= document.getElementById("demo1").value;
alert(lati.value);

        //Test to ensure that the user has entered both a make and model
        if (lati !== "" && long !== "" ) {
            //Insert the user entered details into the cars table, note the use of the ? placeholder, these will replaced by the data passed in as an array as the second parameter
            mydb.transaction(function (t) {
                t.executeSql("INSERT INTO contact (lati,long) VALUES (?,?)", [lati,long]);
                outputContacts();
            });
        } else {
            alert("You must enter a make and model!");
        }
    } else {
        alert("db not found, your browser does not support web sql!");
    }
   
   
   
   
                //function to output the list of contact in the database

function updateContactList(transaction, results) {
    //initialise the listitems variable
    var listitems = "";
    //get the car list holder ul
    var listholder = document.getElementById("carlist");

    //clear cars list ul
    listholder.innerHTML = "";

    var i;
    //Iterate through the results
    for (i = 0; i < results.rows.length; i++) {
        //Get the current row
        var row = results.rows.item(i);

        listholder.innerHTML += "<li>" + row.uname + " - " + row.email + " - "+row.adress+"-"+row.password+"-"+row.cpassword+"(<a href='javascript:void(0);' onclick='deleteContact(" + row.id + ");'>Delete Car</a>)";
    }

}
    function outputContacts() {
    //check to ensure the mydb object has been created
    if (mydb) {
        //Get all the cars from the database with a select statement, set outputCarList as the callback function for the executeSql command
        mydb.transaction(function (t) {
            t.executeSql("SELECT * FROM contact", [], updateContactList);
        });
    } else {
        alert("db not found, your browser does not support web sql!");
    }
}

 
}

function showError(error) {
    switch(error.code) {
        case error.PERMISSION_DENIED:
            x.innerHTML = "User denied the request for Geolocation."
            break;
        case error.POSITION_UNAVAILABLE:
            x.innerHTML = "Location information is unavailable."
            break;
        case error.TIMEOUT:
            x.innerHTML = "The request to get user location timed out."
            break;
        case error.UNKNOWN_ERROR:
            x.innerHTML = "An unknown error occurred."
            break;
    }
}
   
                                              //Test for browser compatibility
if (window.openDatabase) {
    //Create the database the parameters are 1. the database name 2.version number 3. a description 4. the size of the database (in bytes) 1024 x 1024 = 1MB
    var mydb = openDatabase("map_db", "0.1", "A Database of Contact I Like", 1024 * 1024);

    //create the cars table using SQL for the database using a transaction
    mydb.transaction(function (t) {
        t.executeSql("CREATE TABLE IF NOT EXISTS contact (id INTEGER PRIMARY KEY ASC, lati TEXT, long TEXT)");
    });



}
else {
alert("WebSQL is not supported by your browser!");
}
   
   
   

</script>

</body>
</html>

Monday 21 August 2017

Jquery-UI Dialog Box

<html>
<head>
<script src="jquery.js">
</script>
<script src="jquery-ui.js">
</script>
<link href="jquery-ui.css" rel="stylesheet"/>
<script>
$(document).ready(function()
{
$("#img1").hide();
$(".c1").mouseover(function()
{
$(this).css("opacity","0.6");
});
$(".c1").mouseout(function()
{
$(this).css("opacity","1");
});
$(".c1").click(function()
{
var str=$(this).attr("src");
$("#img1").attr("src",str);
$("#img1").dialog(
{
width:"750",
height:"450",
draggable:false,
resizable:false,
modal:false,
show:{effect:"explode",duration:2000},
hide:{effect:"explode",duration:2000},
buttons:[
{
text:"Exit",
click:function()
{
$("#img1").dialog("close");
}
}
]
});
});
});
</script>
<style>
.c1
{
height:150px;
width:180px;
border:1px solid black;
padding:5px;
margin:5px;
cursor:pointer;
}
</style>
</head>
<body>
<h1>Jquery-UI Dialog Box</h1>
<hr><br>
<img class="c1" src="Images1/images (1).jpg"/>
<img class="c1" src="Images1/images (2).jpg"/>
<img class="c1" src="Images1/images (3).jpg"/>
<img id="img1" src="Images1/images (1).jpg"/><br><br>
</body>
</html>

Jquery-UI Dialog Box

<html>
<head>
<script src="jquery.js">
</script>
<script src="jquery-ui.js">
</script>
<link href="jquery-ui.css" rel="stylesheet"/>
<script>
$(document).ready(function()
{
$("#img1").hide();
$(".c1").mouseover(function()
{
$(this).css("opacity","0.6");
});
$(".c1").mouseout(function()
{
$(this).css("opacity","1");
});
$(".c1").click(function()
{
var str=$(this).attr("src");
$("#img1").attr("src",str);
$("#img1").dialog(
{
width:"750",
height:"450",
draggable:false,
resizable:false,
modal:false,
show:{effect:"explode",duration:2000},
hide:{effect:"explode",duration:2000},
buttons:[
{
text:"Exit",
click:function()
{
$("#img1").dialog("close");
}
}
]
});
});
});
</script>
<style>
.c1
{
height:150px;
width:180px;
border:1px solid black;
padding:5px;
margin:5px;
cursor:pointer;
}
</style>
</head>
<body>
<h1>Jquery-UI Dialog Box</h1>
<hr><br>
<img class="c1" src="Images1/images (1).jpg"/>
<img class="c1" src="Images1/images (2).jpg"/>
<img class="c1" src="Images1/images (3).jpg"/>
<img id="img1" src="Images1/images (1).jpg"/><br><br>
</body>
</html>

Usage of HTML5 Dialog Tag

<!DocType html>
<html language="en-us">
<head>
<meta charset="utf-8"/>
<title>HTML5 Semantic Tags</title>
<script>
function f1()
{
var obj=document.getElementById("d1");
obj.showModal();
}
function f2()
{
var obj=document.getElementById("d1");
obj.close();
}
function f3()
{
var obj=document.getElementById("d1");
obj.open();
}
</script>
</head>
<style>
#d1::backdrop
{
background-color:pink;
opacity:0.5;
}
#d1
{
width:"350px";
border-top:20px solid orange;
border-bottom:20px solid orange;
border-radius:25px;
text-align:center;
margin-top:250px;
}
</style>
<body >
<h1>Usage of HTML5 Dialog Tag</h1>
<hr>
<input type="button" value="Show Dialog" onclick="f1()"/>
<br><br>
<dialog id="d1">
<h2>Web UI Course List</h2>
<ol style="text-align:left">
<li>HTML5</li>
<li>CSS3</li>
<li>ANGULAR JS</li>
<li>JQUERY</li>
<li>BOOTSTRAP</li>
</ol>
<input type="button" value="Exit" onclick="f2()"/>
<a href="images (4).jpg"><input type="button" value="Save" onclick="f3()"/></a>
</dialog>
</body >
</html>

Saturday 13 August 2016

Janatha Garage (2016) Movie Audio CD Rips Free Download




 

Janatha Garage Songs Free Download

Lead Actors and Actresses : Jr NTR, Samantha, Nitya Menon
Music Director : Devi Sri Prasad
Producer : Naveen Yerneni, Y Ravi Shankar, CV Mohan
Banner : Mythri Movie Makers
Director : Koratala Siva
Lyrics : Ramajogayya Sastry
Audio Produced By : Lahari Music

Janatha Garage Telugu Movie Audio CD Rips Songs Free Download

╬ Janatha Garage Telugu Mp3 Songs Original Movie Motion Picture Soundtracks Track List 
╬ Individual Janatha Garage Songs Free Download Now Available ╬
Pranaamam – Singer(s) : Shankar Mahadevan, Ranina Reddy
128Kbps – [Single Song]
320Kbps – [Direct Mp3]
Janata Garage Full Online Telugu Mp3 Free Songs, Music Streaming Janatha Garage Songs Free Download
Rock On Bro – Singer(s) : Raghu Dixit
128Kbps – [Direct Mp3]
320Kbps – [Single Song]
Listen to Janatha Garage Telugu Mp3 Songs Online, Janata Garage Telugu Mp3 Film Movie Songs
Apple Beauty – Singer(s) : Yazin Nizar, Neha Bhasin
128Kbps – [Direct Mp3]
320Kbps – [Single Song]
Janata Garage Hit Mp3 Free Songs, Janata Garage Individual Audio Superme Quality Songs Free Download
Jayaho Janatha – Singer(s) : Sukhwinder Singh, Vijay Prakash
128Kbps – [Single Song]
320Kbps – [Direct Mp3]
Latest Janata Garage Telugu Mp3 Songs Single Movie Audio Tracks, Telugu Film Janatha Garage Songs Online Mp3 Download
Nee Selvadigi – Singer(s) : Shwetha Mohan
128Kbps – [Direct Mp3]
320Kbps – [Single Song]
High Quality Janatha Garage Mp3 Free Songs Download, Janatha Garage Telugu Mp3 Free Soundtracks
Pakka Local – Singer(s) : Geetha Madhuri, Sagar
128Kbps – [Direct Mp3]
320Kbps – [Single Song]
Janata Garage Telugu Movie Itunes Rips Songs Free Download, Superior Quality Janatha Garage Audio Fast Download Telugu Mp3 Songs
[1024 Kbps Janata Garage FLAC Complete Album Download]
[JumpShare] [SendSpace] [UsersCloud]

Janatha Garage Songs 320Kbps 128Kbps Audio Songs Download

╬ Complete Album Mp3 Janatha Garage Songs Free Download ╬

[320Kbps Janatha Garage Telugu Mp3 Songs]

[128Kbps Janatha Garage Telugu Mp3 Songs]