I got a form which is being created by some class files, it only creates the classname. However the background image is being set but with the value is being typed, I want to hide the background image.
I am trying this piece of script but it does not work:
<input type="text" value="" name="b_fname">
background-image:
url("/site/vitiscellars/images/basic_theme/your_name_bg.jpg");
This is my piece of test code:
javascript
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j('.b_fname').click(function() {
alert('Handler for called'); });
});
Do know why this piece of code is not working.
you have name=”b_fname” but no class. Add class=”b_fname” or change your selector to: