Skip to main content

Dependent Dropdowns includes a modal to display results

Dependent Dropdown

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Dependent Dropdown</title>

    <style>

        body {

            font-family: Arial, sans-serif;

            margin: 20px;

        }


        label {

            display: block;

            margin-bottom: 8px;

        }


        select {

            width: 100%;

            padding: 8px;

            margin-bottom: 16px;

        }


        button {

            padding: 10px;

            background-color: #4CAF50;

            color: white;

            border: none;

            cursor: pointer;

        }


        .modal {

            display: none;

            position: fixed;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background-color: rgba(0,0,0,0.7);

            justify-content: center;

            align-items: center;

        }


        .modal-content {

            background-color: #fefefe;

            padding: 20px;

            border-radius: 5px;

            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

        }

    </style>

</head>

<body>


    <label for="state">Select State:</label>

    <select id="state" onchange="populateDistricts()">

        <option value="maharashtra">Maharashtra</option>

        <option value="karnataka">Karnataka</option>

        <!-- Add more states as needed -->

    </select>


    <label for="district">Select District:</label>

    <select id="district"></select>


    <button onclick="showResults()">Show Results</button>


    <div class="modal" id="resultModal">

        <div class="modal-content">

            <span onclick="closeModal()" style="float: right; cursor: pointer;">&times;</span>

            <h2>Results</h2>

            <p id="resultText"></p>

        </div>

    </div>


    <script>

        function populateDistricts() {

            const stateSelect = document.getElementById("state");

            const districtSelect = document.getElementById("district");

            const selectedState = stateSelect.value;


            // Clear previous options

            districtSelect.innerHTML = '';


            // Populate districts based on the selected state

            if (selectedState === "maharashtra") {

                const districts = ["Mumbai", "Pune", "Nagpur", "Nashik"];

                populateOptions(districts, districtSelect);

            } else if (selectedState === "karnataka") {

                const districts = ["Bangalore", "Mysuru", "Hubli", "Mangalore"];

                populateOptions(districts, districtSelect);

            }

            // Add more states and districts as needed

        }


        function populateOptions(options, selectElement) {

            options.forEach(option => {

                const optionElement = document.createElement("option");

                optionElement.value = option.toLowerCase();

                optionElement.text = option;

                selectElement.appendChild(optionElement);

            });

        }


        function showResults() {

            const districtSelect = document.getElementById("district");

            const resultText = document.getElementById("resultText");

            const selectedDistrict = districtSelect.value;


            // Add your logic to fetch and display results based on the selected district

            resultText.textContent = `Results for ${selectedDistrict}`;


            // Show modal

            const modal = document.getElementById("resultModal");

            modal.style.display = "flex";

        }


        function closeModal() {

            const modal = document.getElementById("resultModal");

            modal.style.display = "none";

        }


        // Close modal if clicked outside the modal content

        window.onclick = function(event) {

            const modal = document.getElementById("resultModal");

            if (event.target === modal) {

                modal.style.display = "none";

            }

        };

    </script>


</body>

</html>


HTML Structure:

1. State and District Dropdowns:

   - The HTML includes two dropdowns: one for selecting the state (`<select id="state">`) and another for selecting the district (`<select id="district">`).

   - The state dropdown has hardcoded options for Maharashtra and Karnataka. You can add more states and their corresponding districts as needed.


2. Show Results Button:

   - A button (`<button onclick="showResults()">Show Results</button>`) triggers the `showResults` function when clicked.


3. Modal for Results:

   - There's a hidden modal (`<div class="modal" id="resultModal">`) that will display the results.

   - Inside the modal, there's a close button (`&times;`) and a content area (`<div class="modal-content">`) where the results will be displayed.


CSS Styles:

1. Basic Styling:

   - The CSS styles define the appearance of the page, dropdowns, button, and modal. It ensures a simple and responsive design.


JavaScript Functions:

1. populateDistricts` Function:

   - This function is called when the state dropdown changes.

   - It clears the previous options in the district dropdown and populates it based on the selected state.

   - The districts are hardcoded for Maharashtra and Karnataka. You should replace them with your actual data.


2. populateOptions` Function:

   - A helper function used by `populateDistricts` to populate options in a dropdown.


3. showResults` Function:

   - This function is called when the "Show Results" button is clicked.

   - It fetches the selected district and displays a simple text result in the modal content area.

   - You should replace the text result with your actual logic for fetching and displaying results.


4. closeModal` Function:

   - Closes the modal when called.


5. Window Click Event:

   - Closes the modal if the user clicks outside the modal content.

 Final Notes:

- The code provides a basic structure for dependent dropdowns and a modal for displaying results.

- You need to replace the hardcoded data with your actual data and implement the logic for fetching and displaying results in the `showResults` function.

- Customize the styling and layout according to your design preferences.

Comments

Popular posts from this blog

Story of the Nilavanti Granth

  A story about the Nilavanti Granth: ą¤ą¤• समय ą¤•ą„€ बात ą¤¹ą„ˆ, भारत ą¤•ą„‡ दिल ą¤®ą„‡ą¤‚ ą¤ą¤• ą¤°ą¤¹ą¤øą„ą¤Æą¤®ą¤Æą„€ ą¤Ŗą„ą¤øą„ą¤¤ą¤• ą¤„ą„€ ą¤œą¤æą¤øą„‡ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ ą¤—ą„ą¤°ą¤‚ą¤„ कहा जाता ą¤„ą¤¾ą„¤ यह ą¤Ŗą„ą¤øą„ą¤¤ą¤• ą¤øą¤‚ą¤øą„ą¤•ą„ƒą¤¤ ą¤®ą„‡ą¤‚ ą¤ą¤• ऋषि ą¤¦ą„ą¤µą¤¾ą¤°ą¤¾ ą¤²ą¤æą¤–ą„€ ą¤—ą¤ˆ ą¤„ą„€ą„¤ यह भारत ą¤•ą„€ ą¤øą¤¬ą¤øą„‡ ą¤°ą¤¹ą¤øą„ą¤Æą¤®ą¤Æą„€ और ą¤šą¤®ą¤¤ą„ą¤•ą¤¾ą¤°ą„€ ą¤Ŗą„ą¤øą„ą¤¤ą¤•ą„‹ą¤‚ ą¤®ą„‡ą¤‚ ą¤øą„‡ ą¤ą¤• ą¤®ą¤¾ą¤Øą„€ ą¤œą¤¾ą¤¤ą„€ ą¤„ą„€ą„¤ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ ą¤—ą„ą¤°ą¤‚ą¤„ ą¤•ą„€ ą¤•ą¤¹ą¤¾ą¤Øą„€ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ नामक ą¤ą¤• महिला ą¤•ą„‡ साऄ ą¤¶ą„ą¤°ą„‚ ą¤¹ą„‹ą¤¤ą„€ ą¤¹ą„ˆ, ą¤œą¤æą¤øą„‡ ą¤œą¤¾ą¤¦ą„ą¤ˆ ą¤•ą„ą¤·ą¤®ą¤¤ą¤¾ą¤“ą¤‚ का ą¤¹ą„‹ą¤Øą¤¾ कहा जाता ą¤„ą¤¾ą„¤ कहा जाता ऄा कि ą¤‰ą¤øą„‡ ą¤øą¤­ą„€ ą¤œą„€ą¤µą¤æą¤¤ ą¤Ŗą„ą¤°ą¤¾ą¤£ą¤æą¤Æą„‹ą¤‚ ą¤•ą„€ भाषा ą¤øą¤®ą¤ą¤Øą„‡ ą¤•ą„€ ą¤•ą„ą¤·ą¤®ą¤¤ą¤¾ ą¤„ą„€ą„¤ ą¤‡ą¤øą„€ ą¤…ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æ ą¤•ą„ą¤·ą¤®ą¤¤ą¤¾ ą¤•ą„‡ कारण ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ ą¤—ą„ą¤°ą¤‚ą¤„ इतना ą¤µą¤æą¤¶ą„‡ą¤· ą¤„ą¤¾ą„¤ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ ą¤‰ą¤¤ą„ą¤¤ą¤° ą¤Ŗą„ą¤°ą¤¦ą„‡ą¤¶ ą¤•ą„‡ ą¤ą¤• ą¤›ą„‹ą¤Ÿą„‡ ą¤øą„‡ गांव ą¤®ą„‡ą¤‚ ą¤Ŗą„ˆą¤¦ą¤¾ ą¤¹ą„ą¤ˆ ą¤„ą„€ą¤‚ą„¤ जब वह ą¤øą¤æą¤°ą„ą¤« ą¤Ŗą¤¾ą¤‚ą¤š साल ą¤•ą„€ ą¤„ą„€, ą¤‰ą¤øą¤•ą„€ मां का निधन ą¤¹ą„‹ गया, तब ą¤‰ą¤øą¤•ą„‡ पिता ą¤Øą„‡ ą¤‰ą¤øą„‡ ą¤²ą„‡ą¤•ą¤° ą¤¦ą„‚ą¤øą¤°ą„‡ गांव ą¤®ą„‡ą¤‚ ą¤šą¤²ą„‡ ą¤—ą¤ą„¤ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ ą¤Øą„‡ ą¤…ą¤Ŗą¤Øą„‡ पिता ą¤øą„‡ ą¤†ą¤Æą„ą¤°ą„ą¤µą„‡ą¤¦ ą¤øą„€ą¤–ą¤¾ और ą¤‰ą¤øą„‡ ą¤Ŗą„Œą¤§ą„‹ą¤‚, ą¤œą¤¾ą¤Øą¤µą¤°ą„‹ą¤‚, और ą¤Ŗą¤•ą„ą¤·ą¤æą¤Æą„‹ą¤‚ ą¤•ą„€ भाषा ą¤øą¤®ą¤ą¤Øą„‡ ą¤•ą„€ ą¤…ą¤¦ą„ą¤µą¤æą¤¤ą„€ą¤Æ ą¤•ą„ą¤·ą¤®ą¤¤ą¤¾ ą¤­ą„€ ą¤„ą„€ą„¤ ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€ जब ą¤¬ą¤”ą¤¼ą„€ ą¤¹ą„ą¤ˆ, ą¤¤ą„‹ ą¤‰ą¤øą„‡ ą¤øą¤Ŗą¤Øą„‡ ą¤†ą¤Øą„‡ ą¤²ą¤—ą„‡ ą¤œą¤æą¤øą¤®ą„‡ą¤‚ ą¤­ą„‚ą¤¤-ą¤Ŗą„ą¤°ą„‡ą¤¤ ą¤‰ą¤øą„‡ ą¤Ŗą„ƒą¤„ą„ą¤µą„€ ą¤•ą„‡ ą¤Øą„€ą¤šą„‡ ą¤›ą¤æą¤Ŗą„‡ ą¤¹ą„ą¤ ą¤–ą¤œą¤¾ą¤Øą„‹ą¤‚ ą¤•ą„‡ ą¤¬ą¤¾ą¤°ą„‡ ą¤®ą„‡ą¤‚ ą¤¬ą¤¤ą¤¾ą¤¤ą„‡ ą¤„ą„‡ą„¤ इन ą¤–ą¤œą¤¾ą¤Øą„‹ą¤‚ ą¤•ą„‡ ą¤¬ą¤¾ą¤°ą„‡ ą¤®ą„‡ą¤‚ ą¤œą¤¾ą¤Øą¤Øą„‡ ą¤•ą„‡ ą¤¬ą¤¾ą¤µą¤œą„‚ą¤¦, ą¤Øą¤æą¤²ą¤¾ą¤µą¤‚ą¤¤ą„€, ą¤ą¤• ą¤øą¤šą„ą¤šą„€ ą¤µą„ą¤Æą¤•ą„ą¤¤ą¤æ ą¤¹ą„‹ą¤Øą„‡ ą¤•ą„‡ ą¤Øą¤¾ą¤¤ą„‡, ą¤•ą¤­ą„€ ą¤‰ą¤Øą„ą¤¹ą„‡ą¤‚ ą¤–ą„‹ą¤¦ą¤•ą¤° ą¤Øą¤¹ą„€ą¤‚ ą¤Øą¤æą¤•ą¤¾ą¤²ą„€ą„¤ बजाय ą¤‡ą¤øą¤•ą„‡, ą¤‰ą¤øą¤Øą„‡ भ...

ą¤µą„€ą¤°ą„ą¤Æ ą¤•ą„ˆą¤øą„‡ बनता ą¤¹ą„ˆ

ą¤µą„€ą¤°ą„ą¤Æ ą¤¶ą¤°ą„€ą¤° ą¤•ą„€ ą¤¬ą¤¹ą„ą¤¤ ą¤®ą„‚ą¤²ą„ą¤Æą¤µą¤¾ą¤Øą„ ą¤§ą¤¾ą¤¤ą„ ą¤¹ą„ˆ ą„¤ ą¤­ą„‹ą¤œą¤Ø ą¤øą„‡ ą¤µą„€ą¤°ą„ą¤Æ ą¤¬ą¤Øą¤Øą„‡ ą¤•ą„€ ą¤Ŗą„ą¤°ą¤•ą„ą¤°ą¤æą¤Æą¤¾ ą¤¬ą„œą„€ ą¤²ą¤®ą„ą¤¬ą„€ ą¤¹ą„ˆ | ą¤¶ą„ą¤°ą„€ ą¤øą„ą¤¶ą„ą¤°ą„ą¤¤ą¤¾ą¤šą¤¾ą¤°ą„ą¤Æ ą¤Øą„‡ लिखा ą¤¹ą„ˆ : ą¤°ą¤øą¤¾ą¤¦ą„ą¤°ą¤•ą„ą¤¤ą¤‚ ą¤¤ą¤¤ą„‹ मांसं ą¤®ą¤¾ą¤‚ą¤øą¤¾ą¤Øą„ą¤®ą„‡ą¤¦ą¤ƒ ą¤Ŗą„ą¤°ą¤œą¤¾ą¤Æą¤¤ą„‡ | ą¤®ą„‡ą¤¦ą¤øą„ą¤Æą¤¾ą¤øą„ą¤„ą¤æą¤ƒ ą¤¤ą¤¤ą„‹ ą¤®ą¤œą„ą¤œą¤¾ ą¤®ą¤œą„ą¤œą¤¾ą¤Æą¤¾ą¤ƒ ą¤¶ą„ą¤•ą„ą¤°ą¤øą¤‚ą¤­ą¤µą¤ƒ ą„„ ą¤œą„‹ ą¤­ą„‹ą¤œą¤Ø पचता ą¤¹ą„ˆ , उसका ą¤Ŗą¤¹ą¤²ą„‡ रस बनता ą¤¹ą„ˆ ą„¤ पाँच दिन तक उसका पाचन ą¤¹ą„‹ą¤•ą¤° ą¤°ą¤•ą„ą¤¤ बनता ą¤¹ą„ˆ ą„¤ पाँच दिन बाद ą¤°ą¤•ą„ą¤¤ ą¤®ą„‡ą¤‚ ą¤øą„‡ मांस , ą¤‰ą¤øą¤®ą„‡ą¤‚ ą¤øą„‡ 5-5 दिन ą¤•ą„‡ अंतर ą¤øą„‡ ą¤®ą„‡ą¤¦ , ą¤®ą„‡ą¤¦ ą¤øą„‡ ą¤¹ą¤”ą„ą¤”ą„€ , ą¤¹ą¤”ą„ą¤”ą„€ ą¤øą„‡ ą¤®ą¤œą„ą¤œą¤¾ और ą¤®ą¤œą„ą¤œą¤¾ ą¤øą„‡ अंत ą¤®ą„‡ą¤‚ ą¤µą„€ą¤°ą„ą¤Æ बनता ą¤¹ą„ˆ ą„¤ ą¤øą„ą¤¤ą„ą¤°ą„€ ą¤®ą„‡ą¤‚ ą¤œą„‹ यह ą¤§ą¤¾ą¤¤ą„ ą¤¬ą¤Øą¤¤ą„€ ą¤¹ą„ˆ ą¤‰ą¤øą„‡ ā€˜ रज ā€˜ ą¤•ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ ą„¤ ą¤µą„€ą¤°ą„ą¤Æ किस ą¤Ŗą„ą¤°ą¤•ą¤¾ą¤° ą¤›ą¤ƒ सात ą¤®ą¤‚ą¤œą¤æą¤²ą„‹ą¤‚ ą¤øą„‡ ą¤—ą„ą¤œą¤°ą¤•ą¤° अपना यह अंतिम ą¤°ą„‚ą¤Ŗ धारण करता ą¤¹ą„ˆ , यह ą¤øą„ą¤¶ą„ą¤°ą„ą¤¤ ą¤•ą„‡ इस कऄन ą¤øą„‡ ą¤œą„ą¤žą¤¾ą¤¤ ą¤¹ą„‹ जाता ą¤¹ą„ˆ ą„¤ ą¤•ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ कि इस ą¤Ŗą„ą¤°ą¤•ą¤¾ą¤° ą¤µą„€ą¤°ą„ą¤Æ ą¤¬ą¤Øą¤Øą„‡ ą¤®ą„‡ą¤‚ ą¤•ą¤°ą„€ą¤¬ 30 दिन व 4 ą¤˜ą¤£ą„ą¤Ÿą„‡ लग ą¤œą¤¾ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ ą„¤ ą¤µą„ˆą¤œą„ą¤žą¤Øą¤æą¤• ą¤²ą„‹ą¤— ą¤•ą¤¹ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ कि 32 ą¤•ą¤æą¤²ą„‹ą¤—ą„ą¤°ą¤¾ą¤® ą¤­ą„‹ą¤œą¤Ø ą¤øą„‡ 700 ą¤—ą„ą¤°ą¤¾ą¤® ą¤°ą¤•ą„ą¤¤ बनता ą¤¹ą„ˆ और 700 ą¤—ą„ą¤°ą¤¾ą¤® ą¤°ą¤•ą„ą¤¤ ą¤øą„‡ लगभग 20 ą¤—ą„ą¤°ą¤¾ą¤® ą¤µą„€ą¤°ą„ą¤Æ बनता ą¤¹ą„ˆ ą„¤ ą¤†ą¤•ą¤°ą„ą¤·ą¤• ą¤µą„ą¤Æą¤•ą„ą¤¤ą¤æą¤¤ą„ą¤µ का कारण इस ą¤µą„€ą¤°ą„ą¤Æ ą¤•ą„‡ संयम ą¤øą„‡ ą¤¶ą¤°ą„€ą¤° ą¤®ą„‡ą¤‚ ą¤ą¤• ą¤…ą¤¦ą¤­ą„ą¤¤ ą¤†ą¤•ą¤°ą„ą¤·ą¤• ą¤¶ą¤•ą„ą¤¤ą¤æ ą¤‰ą¤¤ą„ą¤Ŗą¤Øą„ą¤Ø ą¤¹ą„‹ą¤¤ą„€ ą¤¹ą„ˆ ą¤œą¤æą¤øą„‡ ą¤Ŗą„ą¤°ą¤¾ą¤šą„€ą¤Ø ą¤µą„ˆą¤¦ą„ą¤Æ ą¤§ą¤Øą„ą¤µą¤‚ą¤¤ą¤°ą¤æ ą¤Øą„‡ ā€˜ ą¤“ą¤œ ā€˜ नाम दिया ą¤¹ą„ˆ ą„¤ ą¤Æą¤¹ą„€ ą¤“ą¤œ ą¤®ą¤Øą„ą¤·ą„ą¤Æ ą¤•ą„‹ ą¤…ą¤Ŗą¤Øą„‡ परम – लाभ ā€˜ ą¤†ą¤¤ą„ą¤®ą¤¦ą¤°ą„ą¤¶ą¤Ø ā€˜ ą¤•ą¤°ą¤¾ą¤Øą„‡ ą¤®ą„‡ą¤‚ सहायक बनता ą¤¹ą„ˆ ...

How to Make $20 a Day Online: Quick and Easy Methods

Making $20 a day online is an achievable goal if you’re willing to put in some effort and choose the right methods. Here are some effective ways to start earning money online: 1. Freelancing Freelancing is a popular way to earn money online. If you have skills in areas like writing, graphic design, programming, or digital marketing, you can offer your services on freelance platforms such as Upwork, Fiverr, or Freelancer. By taking on small projects, you can quickly start earning and potentially reach your $20-a-day goal. Tips for Success: - Create a compelling profile showcasing your skills and past work. - Start with lower rates to build up your portfolio and client base. - Deliver high-quality work to receive positive reviews and secure more projects. 2. Online Surveys Participating in online surveys is an easy way to earn some extra cash. Several legitimate websites, like Swagbucks, Survey Junkie, and Vindale Research, offer payment for your opinions on various topics. While it migh...

ą¤µą„€ą¤°ą„ą¤Æą¤°ą¤•ą„ą¤·ą¤¾ ą¤•ą„‡ उपाय

  सादा रहन – सहन ą¤¬ą¤Øą¤¾ą¤Æą„‡ą¤‚ ą¤•ą¤¾ą¤«ą„€ ą¤²ą„‹ą¤—ą„‹ą¤‚ ą¤•ą„‹ यह ą¤­ą„ą¤°ą¤® ą¤¹ą„ˆ कि ą¤œą„€ą¤µą¤Ø तऔ़क – भऔ़कवाला ą¤¬ą¤Øą¤¾ą¤Øą„‡ ą¤øą„‡ ą¤µą„‡ समाज ą¤®ą„‡ą¤‚ ą¤µą¤æą¤¶ą„‡ą¤· ą¤®ą¤¾ą¤Øą„‡ ą¤œą¤¾ą¤¤ą„‡ ą¤¹ą„ˆą¤‚ ą„¤ ą¤µą¤øą„ą¤¤ą„ą¤¤ą¤ƒ ą¤ą¤øą„€ बात ą¤Øą¤¹ą„€ą¤‚ ą¤¹ą„ˆ ą„¤ ą¤‡ą¤øą¤øą„‡ ą¤¤ą„‹ ą¤•ą„‡ą¤µą¤² ą¤…ą¤Ŗą¤Øą„‡ अहंकार का ą¤¹ą„€ ą¤Ŗą„ą¤°ą¤¦ą¤°ą„ą¤¶ą¤Ø ą¤¹ą„‹ą¤¤ą¤¾ ą¤¹ą„ˆ ą„¤ लाल रंग ą¤•ą„‡ ą¤­ą¤”ą¤¼ą¤•ą„€ą¤²ą„‡ ą¤ą¤µą¤‚ ą¤°ą„‡ą¤¶ą¤®ą„€ ą¤•ą¤Ŗą¤”ą¤¼ą„‡ ą¤Øą¤¹ą„€ą¤‚ ą¤Ŗą¤¹ą¤Øą„‹ ą„¤ ą¤¤ą„‡ą¤² – ą¤«ą„ą¤²ą„‡ą¤² और भाँति – भाँति ą¤•ą„‡ ą¤‡ą¤¤ą„ą¤°ą„‹ą¤‚ का ą¤Ŗą„ą¤°ą¤Æą„‹ą¤— ą¤•ą¤°ą¤Øą„‡ ą¤øą„‡ ą¤¬ą¤šą„‹ ą„¤ ą¤œą„€ą¤µą¤Ø ą¤®ą„‡ą¤‚ ą¤œą¤æą¤¤ą¤Øą„€ तऔ़क – भऔ़क ą¤¬ą¤¢ą¤¼ą„‡ą¤—ą„€ , ą¤‡ą¤Øą„ą¤¦ą„ą¤°ą¤æą¤Æą¤¾ą¤ ą¤‰ą¤¤ą¤Øą„€ ą¤šą¤‚ą¤šą¤² ą¤¹ą„‹ ą¤‰ą¤ ą„‡ą¤‚ą¤—ą„€ , फिर ą¤µą„€ą¤°ą„ą¤Æą¤°ą¤•ą„ą¤·ą¤¾ ą¤¤ą„‹ ą¤¦ą„‚ą¤° ą¤•ą„€ बात ą¤¹ą„ˆ ą„¤ इतिहास पर ą¤­ą„€ हम ą¤¦ą„ƒą¤·ą„ą¤Ÿą¤æ ą¤”ą¤¾ą¤²ą„‡ą¤‚ ą¤¤ą„‹ ą¤®ą¤¹ą¤¾ą¤Ŗą„ą¤°ą„ą¤· ą¤¹ą¤®ą„‡ą¤‚ ą¤ą¤øą„‡ ą¤¹ą„€ ą¤®ą¤æą¤²ą„‡ą¤‚ą¤—ą„‡ , ą¤œą¤æą¤Øą¤•ą¤¾ ą¤œą„€ą¤µą¤Ø ą¤Ŗą„ą¤°ą¤¾ą¤°ą¤‚ą¤­ ą¤øą„‡ ą¤¹ą„€ ą¤øą¤¾ą¤¦ą¤—ą„€ą¤Ŗą„‚ą¤°ą„ą¤£ ऄा ą„¤ सादा रहन – सहन ą¤¤ą„‹ ą¤¬ą¤”ą¤Ŗą„ą¤Ŗą¤Ø का ą¤¦ą„ą¤Æą„‹ą¤¤ą¤• ą¤¹ą„ˆ ą„¤ ą¤¦ą„‚ą¤øą¤°ą„‹ą¤‚ ą¤•ą„‹ ą¤¦ą„‡ą¤– कर ą¤‰ą¤Øą¤•ą„€ ą¤…ą¤Ŗą„ą¤°ą¤¾ą¤•ą„ƒą¤¤ą¤æą¤• व अधिक ą¤†ą¤µą¤¶ą„ą¤Æą¤•ą¤¤ą¤¾ą¤“ą¤‚ą¤µą¤¾ą¤²ą„€ ą¤œą„€ą¤µą¤Ø ą¤¶ą„ˆą¤²ą„€ का ą¤…ą¤Øą„ą¤øą¤°ą¤£ ą¤Øą¤¹ą„€ą¤‚ ą¤•ą¤°ą„‹ ą„¤ ą¤‰ą¤Ŗą¤Æą„ą¤•ą„ą¤¤ आहार ईरान ą¤•ą„‡ बादशाह बहमन ą¤Øą„‡ ą¤ą¤• ą¤¶ą„ą¤°ą„‡ą¤·ą„ą¤  ą¤µą„ˆą¤¦ą„ą¤Æ ą¤øą„‡ ą¤Ŗą„‚ą¤›ą¤¾ : ā€œ दिन ą¤®ą„‡ą¤‚ ą¤®ą¤Øą„ą¤·ą„ą¤Æ ą¤•ą„‹ कितना खाना ą¤šą¤¾ą¤¹ą¤æą¤ ? ā€ ā€œ ą¤øą„Œ दिराम ( ą¤…ą¤°ą„ą¤„ą¤¾ą¤¤ą„ 31 ą¤¤ą„‹ą¤²ą¤¾ ) | ā€œ ą¤µą„ˆą¤¦ą„ą¤Æ ą¤¬ą„‹ą¤²ą¤¾ | ā€œ ą¤‡ą¤¤ą¤Øą„‡ ą¤øą„‡ ą¤•ą„ą¤Æą¤¾ ą¤¹ą„‹ą¤—ą¤¾ ? ā€ बादशाह ą¤Øą„‡ फिर ą¤Ŗą„‚ą¤›ą¤¾ ą„¤ ą¤µą„ˆą¤¦ą„ą¤Æ ą¤Øą„‡ कहा : ā€œ ą¤¶ą¤°ą„€ą¤° ą¤•ą„‡ ą¤Ŗą„‹ą¤·ą¤£ ą¤•ą„‡ ą¤²ą¤æą¤Æą„‡ ą¤‡ą¤øą¤øą„‡ अधिक ą¤Øą¤¹ą„€ą¤‚ ą¤šą¤¾ą¤¹ą¤æą¤ | ą¤‡ą¤øą¤øą„‡ अधिक ą¤œą„‹ ą¤•ą„ą¤› खाया जाता ą¤¹ą„ˆ , वह ą¤•ą„‡ą¤µą¤² ą¤¬ą„‹ą¤ą¤¾ ą¤¢ą„‹ą¤Øą¤¾ ą¤¹ą„ˆ और ą¤†ą¤Æą„ą¤·ą„ą¤Æ ą¤–ą„‹ą¤Øą¤¾ ą¤¹ą„ˆ ą„¤ ā€ ą¤²ą„‹ą¤— ą¤øą„ą¤µą¤¾ą¤¦ ą¤•ą„‡ ą¤²ą¤æą¤Æą„‡ ą¤…ą¤Ŗą¤Øą„‡ ą¤Ŗą„‡ą¤Ÿ क...

How to Get a Verified Badge on Instagram

A Step-by-Step Guide: How to Get a Verified Badge on Instagram Introduction: In the vast world of social media, Instagram stands as one of the most popular platforms for individuals and businesses alike. With millions of users, standing out from the crowd can be challenging. However, one way to establish credibility and authenticity is by obtaining a coveted blue verified badge on your Instagram profile. This badge not only enhances your online presence but also helps you gain trust from your audience. In this blog post, we will guide you through the process of obtaining a verified badge on Instagram. Step 1: Understand Instagram's Verification Criteria Before diving into the verification process, it is crucial to understand Instagram's criteria for granting the coveted blue badge. Instagram typically verifies accounts that are of public interest and belong to well-known personalities, celebrities, global brands, public figures, or entities representing specific industries. Acc...

NEET 2025 You Need to Know

NEET 2025 : Everything You Need to Know Preparing for the NEET 2025? Here’s an overview to help you get acquainted with the exam's key details and important dates. Exam Overview The National Eligibility Cum Entrance Test (NEET) is an undergraduate national-level exam conducted by the National Testing Agency (NTA). Held once a year, it is the gateway for aspiring medical students to secure admissions in various courses such as MBBS, BDS, BSc Nursing, BAMS, and BVSc & AH. In 2024, approximately 25 lakh candidates registered for the exam, highlighting its competitive nature. NEET 2025 will be conducted in an offline mode, where candidates will use paper and pencil to answer the questions. Important Details Exam Fees : - General: INR 1,700 - OBC: INR 1,600 - Reserved Categories: INR 1,000 - Foreign Nationals: INR 9,500 Exam Duration and Timing:  The exam will last for 3 hours and 20 minutes, from 2 PM to 5:20 PM (IST). Subjects and Total Marks : The exam includes Physic...