jQuery

Skilful act jQuery tips and tricks

Share

jQuery is a JavaScript library which is simple, light-weight, open source, cross browser and simplifies animations, event handling, and developing Ajax-based web applications and promotes rapid application development.

Here are few jQuery tips:

Check Element Exists

if ($("#element").length)
{ 
...
}

Check Element Is Visible

if($("#element").is(":visible") == "true")
{ 
...
}

Disable Right Mouse Click

$(document).ready(function(){
    $(document).bind("contextmenu",function(e){
    return false;
    });
});

Current Mouse Coordinates

$(document).ready(function() {
    $().mousemove(function(e)
    {
    $('#mouseDiv ').html("X Axis = " + e.pageX + " and Y Axis = " + e.pageY);
    });
});
<DIV id=mouseDiv></DIV>

Determine Browser

$(document).ready(function() {
// If the browser type is Mozilla Firefox
if ($.browser.mozilla && $.browser.version >= "1.8" ){ 
// some code
}
// If the browser type is Opera
if( $.browser.opera)
{
// some code
}
// If the web browser type is Safari
if( $.browser.safari )
{
// some code
}
// If the web browser type is Chrome
if( $.browser.chrome)
{
// some code
}
// If the web browser type is Internet Explorer
if ($.browser.msie && $.browser.version <= 6 )
{
// some code
}
//If the web browser type is Internet Explorer 6 and above
if ($.browser.msie && $.browser.version > 6)
{
// some code
}
});

Chaining Feature

$(element).removeClass('Class1').addClass('Class2');

View Comments

Recent Posts

Chat GPT Login: Step-by-Step Guide for Beginners

Have you ever thought of a world where asking the Internet for information feels like…

1 hour ago

The Sharp-Looking Guy: 5 Essential Tips for Men to Become Sharp

We've gotten so used to seeing men streetwear joggers, ripped jeans, and sleeveless shirts. Hair…

2 days ago

How to Use Your Wedding Jewellery In Unique Ways At Festivals

When it comes to festivals, the options for wedding jewellery are endless. You can go…

2 days ago

5 Tips On Window Cleaning

Whether it concerns your home or an office building, the state of a property’s windows…

2 days ago

Sustainable Business Practices: A Win-Win Strategy

You know that running an environmentally sustainable business is the right thing to do. But…

2 days ago

Unlock Growth – Guide to Online Financing and Business Loans for Entrepreneurs

If you are in a financial crisis , or need to start a new business…

2 days ago