Tag Archives: jQuery

Creating Dynamic table rows and colums in JQuery and removing it one by one.

By | September 4, 2013

Hi all… Apart from Android, I am now going to post something in jquery. In this post I will be showing how to create a dynamic table in jquery and adding data to it using objects and also deleting each row with a remove button in the corresponding row. This is how it is done.… Read More »

jQuery dollar sign alternative

By | April 8, 2011

Hi, Dollar ($) sign is a shortcut for jQuery. But sometimes it may have conflict with some other JavaScript library functions which also uses $ sign. What to do then? Its simple. Use jQuery noConflict() method for creating any custom names. See for yourselves. I am going to hide! Hide it! Here ‘jqNew’ is your… Read More »

How to Disable Right Click on HTML page using jQuery ?

By | March 8, 2011

Hi, In some special cases you may need to disable the Right Click option on HTML page you are using. An easy way to do it using jQuery is follows. Use the following code in the HTML page where you want to disable Right Click. $(document).ready(function(){ $(document).bind(“contextmenu”,function(e){ return false; }); }); 🙂

Hide and Show a Text Using jQuery – Example

By | February 26, 2011

With jQuery manipulation of HTML & CSS can be done very easily. Here we are going to show how to Hide a line of text using jQuery & Show it back also. Let’s code speak first…. <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("#hideButton").click(function(){ $("p").hide(); }); $("#showButton").click(function(){ $("p").show(); }); }); </script> </head> <body> <p>Hey!… Read More »