PhoneGap media() doesn't work [closed] - javascript

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 6 years ago.
Improve this question
I just want to play an audio file on click, but it doesn't work. I suspect the problem is with loading the plugin, but I can't find out how to load it correctly.
I've got my JavaScript code from some topic here:
var my_media = new Media("sounds/open.mp3",
function () { console.log("playAudio():Audio Success"); }
);
// Play audio
my_media.play();
And then I added this <plugin name="cordova-plugin-media" spec="1.0.1" source="pgb" />into my config.xml file. I tried to add it at the end of it, next to default plugins, but it never worked.
I created my project through PhoneGap desktop, not through the console.

So after few months I've finally found the answer... I just didn't load the cordova.js script. I know it's kind of a stupid mistake but I swear to God it was written nowhere in tutorials I read that I need to include this file.

Related

comments in javascript [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 months ago.
Improve this question
I am unable to create comments. I tried using // and */ but it's still showing the comments as normal text. I am using visual studio code as IDE
You are working with .html file, hence should use HTML comments if you are displaying contents into the web.
<!-- this is html comment -->
If you are using JavaScript, then use
/* js comment here */
or just
// js comment here
for one-line comments.

Images half loading in chrome [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 2 years ago.
Improve this question
I am busy working on this website (http://backtohealth.co.za/home.php) but many of the images are not loading in correctly. I have tried pre-loading the images and changing height values but neither worked. This issue only seems to be with the current host as when I tried with another host there were no issues. What could the issue be?
Go to Chrome Dev Tool (F12), tab Network, filter with Img, you will see most of picture is loading in the half. So the problem causing by the image's source it self (the server), not causing by the site.

Explanation on cdvfile:// protocol [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 5 years ago.
Improve this question
Currently working on Cordova App.
I use <img class="profile-thumbnail" src="cdvfile://localhost/persistent/Photo/mypicture.jpg">to display some content into the view.
When I generate a new mypicture.jpg using the file API to overwrite the existing one, then the picture disappear from the view and never come back before I kill and relaunch the app.
I try with:
$('.profile-thumbnail').attr('src','cdvfile://localhost/persistent/Photo/mypicture.jpg');
after my storage success call, but it still don't display the correct picture just after update.
When I relaunch the app, the new file is displayed properly.
So, how the cdvfile:// protocol handle updates?
Is there any cache to flush after updating the file?
Any preferred techniques to handle this kind of request?
I found the issue, the way I store the updated picture was not correct.
I created the file, but the way I write my picture in it was wrong. So it displayed an empty file.

Jquery Fade and Slide issue [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I made a site using SlideUp and FadeIn as main choice to transition between the content, everything was working well but suddenly stopped working today and i have no idea how to fix it.
I opened the console and don't call any error, i try to remove all scripts but still not working.
Here's the URL from the site ( Here )
All errors on the console comes from the iframe
Edit 1 : Ok it's working now... and the best is i dont touch in the code, just start to work again :)
Actually if you see your console you will some errors, those are jQuery Migrate Plugin - Warning Messages. To resolve all these warning have a look at this link:
jQuery Migrate Plugin - Warning Messages

jQuery UI Draggable using GoogleAPI [closed]

Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Closed 8 years ago.
Improve this question
I'm trying out jQueryUI for the first time, and I'm trying to use the draggable function, for a div as follows:
$("#draggable").draggable();
However If I refer to the google hosted jQuery API, it doesn't seem to work :
script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/jquery-ui.min.js"
But if I download and use a local copy of the library, it works :
script src="jquery-ui.min.js"
Am I missing something?
I noticed that the problem was not the hosted api. I was referencing the jquery.min.js file after referencing the jquery-ui.min.js. When I corrected the order, it worked. I guess jquery-ui.min.js was using assets from the jquery.min.js library, and was erroring out when it couldn't find a reference to it.

Categories