Category archive

General

Explore every article in General, with preserved WordPress-friendly URLs.

28 articles

General

बजाज ने भारत में अपनी एक सुपर बाइक पल्सर एनएस 400 लॉन्च कर दी है

भारत स्थित मोटोसाइकल कंपनी बजाज ऑटो ने मई 2024 में अपना नया फ्लैगशिप मॉडल पल्सर NS400Z लॉन्च किया है, जो बाजार में अब तक की सबसे बड़ी पल्सर लेकर आई है। लुक के मामले में, यह काफी हद तक NS200 से मिलता जुलता है, लेकिन लुक के अलावा, इसमें उन लोगों के लिए बहुत कुछ […]

May 5, 2024

Read article

General

आप अपनी वेबसाइट के माध्यम से ऑनलाइन बिक्री कैसे बढ़ा सकते हैं

किसी वेबसाइट के माध्यम से ऑनलाइन बिक्री बढ़ाने में आगंतुकों को आकर्षित करने, उन्हें प्रभावी ढंग से संलग्न करने और उन्हें ग्राहकों में बदलने के लिए विभिन्न रणनीतियों को लागू करना शामिल है। आपकी ऑनलाइन बिक्री बढ़ाने में मदद के लिए यहां एक मार्गदर्शिका दी गई है: वेबसाइट की ऑनलाइन बिक्री बढ़ाने के लिए हम […]

May 3, 2024

Read article

General

ब्लॉगर के लिए अपने ब्लॉग या वेबसाइट के लिए कंटेंट स्ट्रेटेजी बनाना कितना महत्वपूर्ण है

सामग्री रणनीति क्या है? एक सामग्री रणनीति सामग्री की योजना, निर्माण, प्रकाशन, प्रबंधन और शासन है। एक बेहतरीन सामग्री रणनीति लक्षित दर्शकों को आकर्षित और संलग्न करेगी, व्यावसायिक लक्ष्यों और उद्देश्यों को आगे बढ़ाते हुए उनकी जरूरतों को पूरा करेगी। किसी वेबसाइट के लिए सामग्री रणनीति बनाने में कई चरण शामिल होते हैं। एक प्

May 3, 2024

Read article

General

क्या भारत तानाशाही राष्ट्र बनता जा रहा है? ये कहां तक सच है!!!

भारत में इस समय लोकतंत्र और तानाशाही के विषय पर बहुत ज्यादा प्रचार हो रहा है। एक ही विषय पर बहुत सारे लेख और यूट्यूब वीडियो चलन में हैं। दरअसल भारत में 2024 का लोकसभा चुनाव होने वाला है, इसलिए हम पहले इन दो शब्दों को समझेंगे और फिर इस विषय पर चर्चा करेंगे कि […]

Apr 19, 2024

Read article

General

Add Prefix in text field

When you have to prefix any hard coded value in a text field, like for example in telephone field you have to prefix the country code and dont want the user to remove it, then in that case assign the prefix code in the text field and add the below javascript code code jQuery(“input[name=’job-code’]”).keydown(function(e

Jan 27, 2024

Read article

General

Detect Change in form fields

<script type=”text/javascript”> var formChanged = false; jQuery(window).load(function() { // This is triggered when the entiire page is loaded fully // form id and all the possible filed type in that form, You can also target by field type, name, class or id jQuery(‘#FrmIdToTarget input[type=text], #FrmIdToTarget selec

Jan 26, 2024

Read article

ajax

Ajax call using jquery

function makeAjaxRequest(data1,data2,…..,datax){ $.ajax({ ‘type’:’POST’, async: false, url: ‘http://www.example.com/some_request_url’, data:{param1:data1,param2:data2,….,paramx:datax}, success : function(response) { console.log(response); // Using this you can check the posted data in browser console window return true

Sep 18, 2019

Read article

General

validate email id using jquery or javascript

function validateEmail(email) { var emailReg = /^([\w-\.]+@([\w-]+\.)+[\w-]{2,6})?$/; return emailReg.test(email); } Usage:- if(validateEmail(emailString)){ alert(‘Your email is valid’); } else{ alert(‘Your email is not valid! There should be atleast @ and one dot(.) present in it’); }

May 4, 2018

Read article