How to load jquery url in joomla (Component) ? I have one button. when click this button will reload page then i use get method for get value form variable to display.
Java:
jQuery("#btnclickme").click(function(){
jQuery("#divpro").load("index.php?hello=hello");
});
PHP:
echo $_GET[ hello ];
return;
传真:
<input type="button" value="Click me" id="btnclickme" name="btnclickme" />
<div id="divpro"></div>