I want to make a simple action where a user clicks a button that says “access”, rather than submitting the form, I want it to slide down a div.……………………………………….. Here, this will slide down $(function() $(‘input[value=access]’).click(function() $(‘#access’).slideDown(); );});……
via HTML Language Development » Search Results » ajax:
jQuery button to to activate DIV
I want to make a simple action where a user clicks a button that says “access”, rather than submitting the form, I want it to slide down a div.
………………………………………..
………………………………………..
$(“#myButton”).click(function()
$(“#myDiv”).slideDown();
);
………………………………………..
u can use like this
JS
HTML
For more info: jQuery button to to activate DIV
HTML Language Development » Search Results » ajax