Hello,
It's probably something really simple, but I'm just learning.
There's a page with 3 blockquote tags on it, and I'd need to get the innerHTML of the one containing a certain string. I don't know how to search/match a string and get the innerHTML of the tag containing the matched result.
Any help would be appreciated for this new...
I've got some heavily modified code that ultimately came from the Windows Media SDK that works great for reading tags out of MP3 and WMV files. Somewhere along the line, Windows Media Player added support for .m4a files (was it in Windows 7?) but the Windows Media API doesn't seem to reflect that addition (or at least IWMMetadataEditor2:...
Hi,
I am implementing a tag cloud system based on this recommendation. (However, I am not using foreign keys)
I am allowing up to 25 tags. My question is, how can I handle editing on the items? I have this item adding/editing page:
Title:
Description:
Tags: (example data) computer, book, web, design
If someone edits an item details, ...
In particular I want to view the Java source code implementation for <jsp:forward>, but clicking on the tag does not bring me to a TLD, but instead to an XSD.
...
I saw alot of good tagging plugins but are these plugins really what I want?
I want to:
- Tag products, users and news
- Search by tags
- List all tags like SELECT DISTINCT tag (for a autocomplete tag list and button tags like here on stackoverflow).
I'm thinking of a separated model Tag. What is the best way to do it?
...
I have setup umbraco search xslt package. In my xslt I am searching by pagename, title, description and now, tags.
The tags property is a document type property of the type, 'Tags'. The search xslt is below;
<xsl:variable name="searchFields" select="ps:getListParameter(string(//macro/searchFields), '@pageName, title, description, tags'...
Hi,
When I am aligning items vertically using <ul> & <li> tag, the following issue occurs
My code is as follows :
< ul>
< li>
yahoo
< /li>
< li>
google
< /li>
< ul>
I'm getting yahoo google listed horizontally in Firefox...but in IE am able to get it vertically.
Plz help :)
...
I have the following html code:
<select name="forma">
<option value="Home">Home</option>
<option value="Contact">Contact</option>
<option value="Sitemap">Sitemap</option>
</select>
how can i make Home, Contact and Sitemap values as links?
i used the following code an as i expected it didnt work,
<select name="forma">
<option value="H...
Hi,
I 'm trying to do add tags to images which are in embedded(added) to word/pdf documents like taggify does.
I was looking for suggestions on how to start?
This question is an extension of
http://stackoverflow.com/questions/128305/tag-images-in-the-image-itself-how-to
thxs
...
I have a svn repository. I have now created a branch for this repository to do some major dev work. Now some of the features that I can created in my project can be committed directly to the main repository instead of the branch. Is there a way to do commit those changes without having me to switch the branch again?
Update:
I am using ...
I can't debug why I am getting an error:
class VendorsController < ApplicationController
def tag_cloud
@tags = Vendor.tag_counts_on(:tags)
end
I set this class as Taggable:
class Vendor < ActiveRecord::Base
acts_as_taggable_on :tags, :competitors
I include the TagsHelper:
module VendorsHelper
include TagsHelper
end
T...
I have a bunch of Bout nodes. Each Bout is associated with a school, and a player who goes to that school. I am thinking it will work to do this association through taxonomy. (The schools and players are drawn from a list that remains fairly constant over time.)
One idea is to have the school name be the parent term, with players as chi...
I want to transform a large xml file to sql statements with xslt. For example I have the author tag.
<author>Evans, Jim; Henderson, Mike; Coyier, Alan</author>
I have a column for last_name and first_name, so Evans, Henderson and Coyier should go to last_name and so on.
How can I pick them out of the tag and put it into sql statement...
quick question...
I have a series of buttons, each with a tag. I click the buttons which individually create a uiimageview based on the tag number. So this tag number, say 43 is passed and a new uiimageview is created using 43.png
All this is working nicely and I can remove the created images by clicking on them...
..but... I'm now wo...
Hello,
I have the following tables;
CREATE TABLE IF NOT EXISTS `tags` (
`tag_id` int(11) NOT NULL auto_increment,
`tag_text` varchar(255) NOT NULL,
PRIMARY KEY (`tag_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=9 ;
CREATE TABLE IF NOT EXISTS `users` (
`user_id` int(11) NOT NULL auto_increment,
`user_display_...
I've made a Django application that uses tags. When i use tag 'c#' and try to redirect to mysiteaddress/tags/c# on server it redirects to ../tags/c and shows me stuff connected to 'c' tag, but when I do the same on my local development machine it redirects me to c%23 and works correctly. What should I change to make it work on production...
I want a tag system like whats on SO but Im not sure how to implement this in the database. This is how i was going to implement it.
Here are my columns in the database
Article Table
ID
Title
TitleSlug
Date
UserID
Description
IsDeleted
TagID1
TagID2
TagID3
TagID4
TagID5
TagName1
TagName2
TagName3
TagName4
TagName5
Tag table
TagID...
Hi,
Can someone please help me trying to figure out how to simply write the meta tags in an asp.net page. The meta tags have been inserted in the page and I just want to loop through them and write the keywords tag. I don't have a probably adding dynamically, just reading.
Thanks in advance.
...
I installed the Acts as taggable on plugin to my 'Post' model, however I'm unable to call up a list of posts tagged with certain tag.
Here's what I have in show.
<%= link_to tag.name, posts_path(:view =>'tag', :tag => tag.name) %><% end %>
Except when I click on it, it shows all posts. I want it to show just the posts tagged with tha...
I am creating a blog in Rails using the Scaffold feature. I would like to add a 'tags' field to each post like on StackOverflow and Wordpress. I can do this with a string type ( scaffold post title:string body:text tags:string ) and then comment seperated but this isn't a good practice, since I also want the reader to be able to browse b...