1
vote
8answers
91 views
Span inside a or a inside span or doens’t matter ?
I want to nest span and a tags. Should I
Put <span> inside <a>
Put <a> inside <span>
It doesn't matter ?
0
votes
2answers
20 views
how to design a tag system for a localized website?
Let say i have a basic tagging system (for a craiglists "clone") such as:
Tag (id, tagname)
ad(id, title, body)
adTag(tag_id, article_id)
This will fit for a non-localized websi …
0
votes
4answers
75 views
PHP RegExp for nested Div tags
I need a regexp I can use with PHP's preg_match_all() to match out content inside div-tags. The divs look like this:
<div id="t1">Content</div>
I've come up with thi …
0
votes
2answers
36 views
How to get the diff between a tag and its base in Git?
I need to generate a patch of commit with respect to its base. A tag has been marked on that commit. So like on 939023 I do a commit and now it becomes 213232, I will tag 213232 wi …
1
vote
3answers
37 views
How to setup organization specific data elements about shared items?
First post, please be kind.
NOTE: I have reviewed entry #20856 (how to implement tagging) but feel this is different due to the fact that the tags method I'm considering is organi …
-1
votes
1answer
48 views
Filter by keyword jquery
Hello,
I have been looking around on ways I can implement an input box on my webpage that will filter by keywords, much like the one buysellads.com uses here where you type in a k …
1
vote
5answers
124 views
Java Remove empty XML tags
I'm looking for a simple Java snippet to remove empty tags from a (any) XML structure
<xml>
<field1>bla</field1>
<field2></field2>
<fi …
1
vote
0answers
23 views
Creating a navigable tag tree based on Stack Overflow [closed]
Just for fun, how could I go about creating a navigable tag tree based on Stack Overflow?
It would be interesting to see the following somehow:
Which technologies generate the mo …
0
votes
1answer
23 views
Grails: How to combine findAllBy and findAllByTag
Hi,
as I am new to Grails and dynamic languages, I do have some 'hopefully simple' question.
I installed the taggable plugin which works fine. There is an array coming in with ta …
1
vote
3answers
52 views
tags in mysql + php
Is there a common way of dealing with tags in databases?
I'm thinking of using tinytext with pipes.
I think adding another table and using IDs might make it more complicated for …
5
votes
3answers
189 views
why <br /> and not <br/> ?
This is one of those things that you read once, say "aha!" and then forget. Exactly my case.
Why is the line-break tag in xhtml preferentially written with a space <br /> an …
2
votes
0answers
26 views
Tag messages on github.
In download section on github, you can download all version of the project associated with tags. But for some reason the tag descriptions are taken from the last commit.
This happ …
1
vote
5answers
146 views
get html out between div tag [closed]
Possible Duplicate:
get data out between html tags
hi,
I need to get some html out between a div. I have a div tag and I want to get all the html out between the tag.
A …
-2
votes
1answer
143 views
Strip tags using jQuery?
HTML:
<table>
<tr>
<td>
<a href="#">link</a>
</td>
</tr>
</table>
I want to: FIND 'link' in 'a' and STRIP ALL p …
1
vote
5answers
54 views
TourtoiseSVN: How to diff 2 tags?
How do I do a diff between 2 tags without checking out both tags?
