au
A:
First, there is no need to distribute the.MPQ file. The project file can be distributed.
Then in the model properties, add a new entry named "projectVersion" with the "Original version" property set to 0. The file format is changed to.3dsXML. This file can be imported into any 3dsMax version 7 or later.
The file has no external dependencies, as long as you've put the.MPQ file in the same folder.
{
"name": "riotjs-autoconf",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo "Error: no test specified" && exit 1"
},
"author": "",
"license": "MIT",
"dependencies": {
"riot-load": "1.1.0",
"riot-router": "1.1.1",
"riot-ui-plugins": "^2.2.0"
"keywords": [],
"homepage": ""
}
Q:
How to stop page refresh in html
I have a html page with a form and a get request for some data.
In the html page there is a button "Send" which calls the function that sends the data and refresh the page, how can I avoid the refresh.
this is my html code:
SCAR
function getData(theCode) {
$.get("" + theCode, function (data) {
$("#status_message").text(data);
});
}
.card {
Related links:
Commentaires