
Search In
Hello friends,
Today we learn how we can access the profile plugin data in Joomla. To access the profile data User - Profile plugin should be enabled. Otherwise it will only display current user id.
To access the data you need to write the followin
Hello friends,
Today we learn how to check next sibling of an element using jQuery. In jQuery, next() method is used to match the immediate sibling of an element.
Syntax:
.next( [selector ] )
selector is the optional parameter which is an expres
Hello friends,
Today we learn how to check a function exist or not. In angular js, IsFunction() is used to find out the function exist or not. If the function exists it returns true else it will return false.
Syntax:
angular.isFunction(value);
v
How to ask for multiple permission in android at once. I m using below code but it is asking one permission at once, and when I close the app and relaunch it then it asks for next permission. How to get rid of this prob,,,,,,, any help
Thanx i
Hello friends,
Today we learn how to find out the difference between two or more arrays. Difference between two or more arrays can be based upon key and value of arrays. PHP provides following functions to fulfill the same:
1. array_diff() Fun
Can some one help me on to create a sample soap webservice using informatica mdm sif ?
In this service how can i prepare a request and response and how can i map the response to my pojo class?
If any sample projects are there for refere
If you would like make adjustment under different screen resolution. Please follow the code below:
var width = jQuery(window).width();
var height = jQuery(window).height();
Hello everyone,
I need Facebook sdk in my app. I want to upload pic's ...
So how to get Facebook SDK and Code In JS..
Using Cordova + iOS..
Please help..
Thanks & Regards
Kishor
Selenium whenever launches a browser, it is not in maximize form. To maximize the window use the following code:
driver.manage().window().maximize();
Eg:
WebDriver driver = new FirefoxDriver();
driver.navigate().to("http://www.hdfcbank.com/");
dri
User can use the following code to capture screen shot using selenium Webdriver .
File Scrfile = Driver.GetScreenShot As(OutputType.File);
FileUtils.CopyFile(Scrfile,new File(“c:\\capturescreenshot.jpg”));
