0
AVINASH can i implement this in wpf webbrowser control and how??
0
I AM USING WEBBROWSER CONTROL IN WPF .IS IT POSSIBLE TO LOAD THE HTM ELEMENT WHEN I CLICKED ON ANCHOR TAG??
0
$('a').click(function(e)
{
e.preventDefault();
$("#content").append('<div>Test Content</div>');
});
OR
$('a').click(function(e)
{
e.preventDefault();
$("#content").load('test.html');
});
and test.html have your own html which you want to load in page
0
You Want Load Html Content Of Div when you click on anchor tag if this right
so you can do with jquery using display none and block property
0
sorry it is official...i only want how to do that