Using jQuery, how do I get the value from a textbox and then load a new page based on the value?
For example, lets say the textbox contains \"hello\" on page1.php, h
Html
Iam a link
Javascript
jQuery('#demoLink').bind('click',function(e){
e.preventDefault();
document.location.href="someUrl.php?text="+ jQuery('#demoQuery').val();
});