edit javascript for FeedJumbler
May 12, 2006 10:41 AM Subscribe
Help editing javascript QueryString using FeedJumbler.
I am trying to append the QueryString parameters (as suggested on this page), so that only 10 entries will show and with only the header.
I have no clue where to append this code. I've tried searching, but to no avail. Any help is appreciated!
My script is as follows:
script language="javascript" type="text/javascript" src="http://feedjumbler.com/users/mfshearer/b8c55373/javascript.js"></script
(I do have the opening and closing carrots in the appropriate places, but ask mefi was parsing my script.)
I am trying to append the QueryString parameters (as suggested on this page), so that only 10 entries will show and with only the header.
I have no clue where to append this code. I've tried searching, but to no avail. Any help is appreciated!
My script is as follows:
script language="javascript" type="text/javascript" src="http://feedjumbler.com/users/mfshearer/b8c55373/javascript.js"></script
(I do have the opening and closing carrots in the appropriate places, but ask mefi was parsing my script.)
Best answer: You attach it to the src attribute of the link
http://feedjumbler.com/users/mfshearer/b8c55373/javascript.js?headlineonly=1&numentries=10
posted by bitdamaged at 11:15 AM on May 12, 2006
http://feedjumbler.com/users/mfshearer/b8c55373/javascript.js?headlineonly=1&numentries=10
posted by bitdamaged at 11:15 AM on May 12, 2006
Best answer: If you want this embeded you can still use it, you're just going to have to use some sort of server side processing. If your site does PHP you could just do this:
<?=
file_get_contents("http://feedjumbler.com/5d598a6e/html.jhtml?headlineonly=1&numentries=10"); ?>
posted by bitdamaged at 11:20 AM on May 12, 2006
<?=
file_get_contents("http://feedjumbler.com/5d598a6e/html.jhtml?headlineonly=1&numentries=10"); ?>
posted by bitdamaged at 11:20 AM on May 12, 2006
Response by poster: and thanks again. i will use the php version and appreciate both of your responses!
posted by mic stand at 11:38 AM on May 12, 2006
posted by mic stand at 11:38 AM on May 12, 2006
This thread is closed to new comments.
posted by mic stand at 11:14 AM on May 12, 2006