Posts by LuKs Sys • 1,658 points
53 posts
-
2
votes4
answers539
viewsA: Pick up word in the middle of a text
Use the function split This function returns an array of strings from a delimiter, in this case our delimiter is /. $link = "uploads/tutorial.pdf"; $fileName = split ("/", $link); print…
-
0
votes3
answers1431
viewsA: Hide object with Javascript
After analyzing your code I realized that there is one form below the other. There are two ways to solve your problem one is via Javascript: document.getElementById("tabs-list").style.display =…
-
3
votes1
answer339
viewsA: Inappbrowser plugin does not work (Unknown Provider)
You don’t need to inject $cordovaInAppBrowser into the controller. Dependency error occurs because you are possibly using Ionic to emulate your application. Add the method below that will solve your…