I have a script that extracts the p elements in a document using jQuery. With jQuery I map these to a normal array. I was just looking for some insight on how to store this in a database through jQuery.
EDIT: I use jQuery to scrape the p elements on a set of pages
var textnode = $(source).children("p:not(:has(img))").map(function() {
return $(this).outerHTML();
}).get();
I was wondering how I would get started on storing this array into a database