Skip to content

get current value for inputs in html page #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 42 additions & 1 deletion jquery.wordexport.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ if (typeof jQuery !== "undefined" && typeof saveAs !== "undefined") {
};
// Clone selected element before manipulating it
var markup = $(this).clone();


modifyClonedData(markup);

// Remove hidden elements from the output
markup.each(function() {
var self = $(this);
Expand Down Expand Up @@ -82,3 +84,42 @@ if (typeof jQuery !== "undefined" && typeof saveAs !== "undefined") {
console.error("jQuery Word Export: missing dependency (FileSaver.js)");
}
}

function modifyClonedData(markup){
markup.find("input[type=email]").attr("type","text");
}

jQuery(document).ready(function($) {
$("input[type=text], textarea,input[type=password]").keyup(function() {
var x =$(this).val();
alert(x);
$(this).attr("value",x);

});
$('input[type="checkbox"]').change( function () {

if($(this).prop('checked')){
$(this).attr('checked', true);
}else{
$(this).attr("checked",false);

}
});
$('input[type="radio"]').change( function () {

if($(this).prop('checked')){
$(this).attr('checked', true);
}else{
$(this).attr("checked",false);

}
});

$('input[type="file"]').on('change', function (event, files, label) {
var file_name = this.value.replace(/\\/g, '/').replace(/.*\//, '')
$(this).after('<span id="file"></span>');
$('#file').css('visibility', 'hidden');
$('#file').text(file_name);
});
});